标签:推送 分支 信息 git pull 添加 font 常用 cal pull
声明:仅作笔记用
拉取远程代码
1.git pull
2.如果需要,输入账户名密码
将本地代码推送到远程
1.git push
2.如果需要,输入账户名密码
同步远程分支
1.git fetch
2.git checkout -b local-branchname origin/remote_branchname
运行 git fetch,可以将远程分支信息获取到本地,再运行 git checkout -b local-branchname origin/remote_branchname 就可以将远程分支映射到本地命名为local-branchname 的一分支
持续添加中~~~
标签:推送 分支 信息 git pull 添加 font 常用 cal pull
原文地址:http://www.cnblogs.com/AlexBlogs/p/6443914.html