Git 全局设置
1 | git config --global user.name "username" |
创建新版本库
1 | git clone http://gitlab-in.bingex.com/store/ss-oco.git |
本地已存在的项目
1 | cd existing_folder |
已存在的 Git 版本库
1 | cd existing_repo |
另一种关联方式
1 | …or create a new repository on the command line |
查看分支是根据哪个分支创建的
1 | git reflog --data=local --all | grep 要查询的分支名称 |
更新代码
1 | git pull |
提交代码
1 | git add . |
切换到远程其他分支
1 | git checkout -b 本地分支名 origin/远程分支名 |
以当前分支创建新的分支
1 | git checkout -b NewBranch # NewBranch 是新的分支名 |
删除本地分支
1 | git branch -D BranchName |
查看本地配置信息
1 | git config --local --list |
查看当前用户名和 email
1 | git config user.name |
更改 git 本地配置用户名
1 | git config user.name 'new_name' |
更改远程仓库地址
1 | git remote set-url origin URL // 更换远程仓库地址,URL为新地址。 |
查看合并到 master 上的分支
1 | git branch --merged master #列出合并到母版中的分支 |