Skip to content

github普通使用小结

liuwanzh edited this page Feb 17, 2012 · 3 revisions

##clone项目取过来 git clone git@....... 此时clone到的项目名字为origin ##改名字 首先要cd到这个项目文件夹 不要老叫origin啦,于是 git remote add new_name git@...... 这个时候再git remote就会看到除了origin,还多了一个new_name ##vim来编辑里面的内容~~ 完了后要保存什么的 ##添加到暂存,并提交 git add file_name git commit

##推送到远程 ###首先要把服务器的东西fetch过来: git fetch 项目名 ###然后把远方服务器的分支并到本地来 git merge origin/master 其中origin/master是fetch到本地的一个分支 ###再git push 远方项目名 本地要合并的分支名 git push 远程项目名 本地分支名 如 git push origin master

Clone this wiki locally