GIT 基础命令使用

1、生成 ssh-key

git config --global user.name "test"

git config --global user.email "[email protected]" ssh-keygen -t rsa -C "[email protected]"

查看.ssh/id_rsa.pub文件,将文件内容复制添加到对应的git项目即可

2、拉取远程仓库

git clone 远程仓库地址

3、拉取最新分支内容

git pull 

4、本地新建一个分支并且关联远程

git checkout -b   本地分支名称  origin/远程分支名称

5、查看分支

git branch -av

6、回滚到某个commit

git log 查看commit记录

git reset --hard commitID

7、添加改动

git add  添加的内容( .代表当前所有改动)

8、查看当前分支状态

git status

9、暂存改动

git stash 

10、拉取暂存改动

git stash pop

11、添加commit 信息

git commit -m '信息内容'

12、推送commit

git push

强制推送 git push -f

13、合并分支

git merge 需要合并到当前分支的分支

你可能感兴趣的:(git,git)