github使用记录

   1、git的初始设置 

  • git config --global user.name "youname" 

  • git config --global user.email youemail

   2、建立仓库  

  • git init 

   3、初始化项目  

  • git add . 
  • git commit -m "updates" 
   4、注册github账号  

         http://github.org

   5、创建SSH密匙  

   6、提交密匙  
          回到github的页面上,在右上方工具栏里找到Account Settings。在这个页面上有一个SSH Public Keys标签,选择Add another public key,cat ~/.ssh/id_dsa.pub 把内容粘贴到github key的空白处,然后Apply就OK了。

   7、上传代码   

          cd到项目目录下,输入以下命令:
  • git remote add origin [email protected]:你的github用户名/你的github项目名.git 

  • ​git push -u origin master

   8、操作完毕,打完收工 



从一个git库迁移到另一个git库:
1、在github中创建一个项目,以爱壁纸HD为例:
git clone [email protected]:hechaoyuyu/LoveWallpaperHD.git
2、先git pull本地的git仓库:
git pull ../LoveWallpaperHD-Linux/
3、修改变更:
git add .
git commit -m "updates"
4、push到远程仓库:
git push -u origin master
5、删除一个远程分支:
git push origin --delete branchname (git 1.7之后的版本有效)
或者
git push origin :gh-pages



如何建立自己的分支:

# 分支的创建和合并

# git branch yourbranch

# git checkout yourbranch    切换到yourbranch

# 开发yourbranch分支,然后开发之后与master分支合并

git checkout master

# git merge yourbranch

# git branch -d yourbranch    合并完后删除本地分支

如何将牛人的远程分支更新到自己的本地分支?

# 查看当前项目下远程

# git remote

# 增加新的分支链接,例如

# git remote add niuren giturl…

# 获取牛人的远程更新

# git fetch niuren

# 将牛人的远程更新合并到本地分支

# git merge niuren/master

以上来源于http://www.yangzhiping.com/tech/github.html


跟踪远程分支:

git checkout -b [分支名] [远程名]/[分支名]



你可能感兴趣的:(github使用记录)