github简单使用

配置Git

  • 生成ssh key
    在git bash中输入以下命令:
$ ssh-keygen -t rsa -C "[email protected]"

后面的[email protected]改为你在github上注册的邮箱,之后会要求确认路径和输入密码,我们这使用默认的一路回车就行。成功的话会在~/下生成.ssh文件夹,进去,打开id_rsa.pub,复制里面的key。回到github上,进入 Account Settings(账户配置),左边选择SSH Keys,Add SSH Key,title随便填,粘贴在你电脑上生成的key。
为了验证是否成功,在git bash下输入:

$ ssh -T [email protected]

如果是第一次的会提示是否continue,输入yes就会看到:You've successfully authenticated, but GitHub does not provide shell access 。这就表示已成功连上github。
接下来我们要做的就是把本地仓库传到github上去,在此之前还需要设置username和email,因为github每次commit都会记录他们。

$ git config --global user.name "your name"
$ git config --global user.email "[email protected]"

简单使用

  • 获取仓库
    在git bash中输入
git clone https://github.com/your username/your repository.git
  • 更新仓库
    在git bash中输入
git add .
git commit -m 'mark'
git push origin branch

mark为提交的注释
branch为仓库分支名称

  • 创建分支
    在git bash中输入
git brach branchname
  • 切换分支
git checkout branchname
  • 查看分支
git brach
  • 分支合并
    首先切换到想要合并到的分枝下,运行git merge命令,例如将dev分支合并到master分支,命令如下:
git checkout master
git merge dev

你可能感兴趣的:(github简单使用)