美文网首页
Git最简使用流程

Git最简使用流程

作者: Adam289 | 来源:发表于2017-02-27 16:27 被阅读0次

    一、安装Git:

    https://git-scm.com/downloads下载git安装包。

    二、本地已有工程,想上传到远程仓库:

    1. 在远处自己的github或者码云上创建新的仓库;

    2. 工程目录下:

    git init

    git add .

    git commit -m 'first commit'

    git remote add origin https://git.oschina.net/yourusername/xxxx.git 

    git push -u origin master

    (或者一步: git push origin master https://git.oschina.net/yourusernam/xxxx.git (将本地更改推送到远程master分支)

    三、若是从远程仓库clone的:

    1. 在github上创建项目

    2. 使用git clone https://github.com/xxxxxxx/xxxxx.git    (克隆到本地)

    3. 编辑项目

    4. git add . (将改动添加到暂存区)

    5. git commit -m "提交说明"

    6. git push origin master 将本地更改推送到远程master分支。

    这样你就完成了向远程仓库的推送。

    相关文章

      网友评论

          本文标题:Git最简使用流程

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