Git 常用命令

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git 常用命令相关的知识,希望对你有一定的参考价值。

1. git init
2. git status
3. git add octocat.txt
    git rm --cached file_name
4. git commit -m "Add cute octocat story"
5. git add ‘*.txt‘
6. git log
7. git remote add origin https://github.com/try-git/try_git.git
8. git push -u origin master

    //The name of our remote is origin and the default local branch name is master. The -u tells Git to remember the parameters, so that next time we can simply run git push and Git will know what to do.

9. git pull origin master
10. git diff HEAD
11. git diff --staged
12. git reset octofamily/octodog.txt
13. git checkout -- octocat.txt
14. git branch clean_up
15. git checkout clean_upgit

16. git branch -d clean_up

      delete the branch

17. git push

 

BTW:

.gitignore 文件中的过滤的内容不可以加引号

以上是关于Git 常用命令的主要内容,如果未能解决你的问题,请参考以下文章

VSCode自定义代码片段15——git命令操作一个完整流程

GitGit 分支管理 ( 克隆远程分支 | 克隆 master 分支 git clone | 查看远程分支 git branch -a | 克隆远程分支 git checkout -b )(代码片段

GitGit 分支管理 ( 克隆远程分支 | 克隆 master 分支 git clone | 查看远程分支 git branch -a | 克隆远程分支 git checkout -b )(代码片段

git 常用命令

源代码管理相关命令(Git常用命令Nuget常用命令CMD常用命令)

git常用命令