一、Git安装后初始化
拷贝.gitconfig覆盖C:\Users\用户名.gitconfig
git config --global user.name "name"
git config --global user.email "name@email.com"
ssh-keygen -t rsa -C "name@email.com"
备注:
- .gitconfig为git配置文件,见附录
- name修改为你的git名称,提交时使用标记提交人
- name@email.com修改为你的邮箱,提交时使用标记提交人
二、切换分支
在项目文件夹,右键菜单"Git Bash Here"调出git命令行窗口
git checkout branchname
备注:branchname修改为你想切换到的分支
三、拉代码步骤
1、git st // 先查看当前状态,如果无文件改动,跳到步骤4;如果修改了文件先提交到本地保存,继续步骤2
2、git add .
3、git commit -m "修改了什么" // 提交本次修改到本地版本库
4、git pul
四、开发步骤
1、修改 // 修改代码、添加文件、删除文件等任意操作
2、git add . // 将修改添加到缓存区
3、git commit -m "修改了什么" // 提交本次修改到本地版本库
若多次提交,可以重复1、2、3...
4、git pul // pull拉代码,并以rebase方式与本地代码合并
5、git pus // push上传到远程服务器
附录:
.gitconfig文件,配置命令缩写
[user]
name = name
email = name@email.com
[alias]
st = status
ci = commit
br = branch
co = checkout
subpull = submodule foreach git pull
fullclone = clone --recursive
pul = !git pull --rebase && git submodule update --init --recursive
pus = push
[credential]
helper = manager
网友评论