Git 简易入门:
1. 安装git(on Windows)
2. clone远程repo: 进入Git Bash.
通常git repo有HTTPS和git协议2种类型的url,视具体情况2种都可以使用:
git clone
3.日常使用 (使用Git Bash)
常用命令是:
git status: 看当前修改了哪些文件。
git pull --rebase: 更新最新代码
git commit -am "change log" 把修改的文件commit
git add filename: 如果新加的文件本身不在代码库中
git push: 把commit提交到服务器
尽量多提交,多同步。会减少冲突。有冲突后,到有冲突的文件,把冲突改正,然后用git add conflict_file_name,把冲突文件加进去。然后再 git pull --rebase
阅读(1050) | 评论(0) | 转发(0) |