美文网首页
Git的基本使用

Git的基本使用

作者: WangSins | 来源:发表于2018-10-08 21:52 被阅读0次

    配置SSH Keys

    1. 生成SSH Keys

    ssh-keygen -t rsa -C "自己的邮箱"

    2. 查看SSH Keys

    cat ~/.ssh/id_rsa.pub

    使用Git上传项目到GitHub

    1.创建本地仓库

    git init

    2.把项目中文件添加到暂存区

    git add .

    3.把项目中文件添加到本地仓库

    git commit -m "这里是提交时候添加的注释"

    4.建立本地仓库与远程仓库连接

    git remote add origin https:/github/自己github的地址

    5.把本地仓库更新和远程仓库一样

    git pull --rebase origin master

    6.提交文件

    git push -u origin master

    团队开发中Git基本使用

    1. 添加更改到本地暂存区

    `git add .`

    2. 提交代码

    `git commit -am "完成的需求"`

    3. 推送到远程代码仓库

    `git push origin feature/分支名`

    4. 切换到稳定版主分支

    `git checkout stable`

    5. 从稳定版分支中拉取最新代码

    `git pull origin stable`

    6. 创建新需求分支

    `git checkout -b feature/分支名`

    7.更新本地数据

    git fetch 

    8.查看远程分支

    git branch -r  查看远程分支 -a  查看所有分支

    相关文章

      网友评论

          本文标题:Git的基本使用

          本文链接:https://www.haomeiwen.com/subject/wzhsaftx.html