码迷,mamicode.com
首页 > 其他好文 > 详细

使用Command Line(终端)提交代码到远程库

时间:2016-05-06 12:52:47      阅读:284      评论:0      收藏:0      [点我收藏+]

标签:

  1. $ git  
  2. usage: git [--version] [--help] [-C <path>] [-c name=value]  
  3.            [--exec-path[=<path>]] [--html-path] [--man-path] [--info-path]  
  4.            [-p | --paginate | --no-pager] [--no-replace-objects] [--bare]  
  5.            [--git-dir=<path>] [--work-tree=<path>] [--namespace=<name>]  
  6.            <command> [<args>]  
  7.   
  8. These are common Git commands used in various situations:  
  9.   
  10. start a working area (see also: git help tutorial)  
  11.    clone      Clone a repository into a new directory  
  12.    init       Create an empty Git repository or reinitialize an existing one  
  13.   
  14. work on the current change (see also: git help everyday)  
  15.    add        Add file contents to the index  
  16.    mv         Move or rename a file, a directory, or a symlink  
  17.    reset      Reset current HEAD to the specified state  
  18.    rm         Remove files from the working tree and from the index  
  19.   
  20. examine the history and state (see also: git help revisions)  
  21.    bisect     Find by binary search the change that introduced a bug  
  22.    grep       Print lines matching a pattern  
  23.    log        Show commit logs  
  24.    show       Show various types of objects  
  25.    status     Show the working tree status  
  26.   
  27. grow, mark and tweak your common history  
  28.    branch     List, create, or delete branches  
  29.    checkout   Switch branches or restore working tree files  
  30.    commit     Record changes to the repository  
  31.    diff       Show changes between commits, commit and working tree, etc  
  32.    merge      Join two or more development histories together  
  33.    rebase     Forward-port local commits to the updated upstream head  
  34.    tag        Create, list, delete or verify a tag object signed with GPG  
  35.   
  36. collaborate (see also: git help workflows)  
  37.    fetch      Download objects and refs from another repository  
  38.    pull       Fetch from and integrate with another repository or a local branch  
  39.    push       Update remote refs along with associated objects  
  40.   
  41. ‘git help -a‘ and ‘git help -g‘ list available subcommands and some  
  42. concept guides. See ‘git help <command>‘ or ‘git help <concept>‘  
  43. to read about a specific subcommand or concept.  
  44. macdeMacBook-Pro:~ Artron_LQQ$   
如果未安装,则会输出:

[ruby] view plain copy
 技术分享技术分享
  1. $ git  
  2. The program ‘git‘ is currently not installed. You can install it by typing:  
  3. sudo apt-get install git  
按照提示输入:sudo apt-get install git即可安装!!或者到此处下载:git下载, pkg包下载完成,双击安装。

输入命令:git --version 可查看当前git版本

[objc] view plain copy
 技术分享技术分享
  1. $ git --version  
  2. git version 2.5.4 (Apple Git-61)  
  3. macdeMacBook-Pro:~ Artron_LQQ$   

当然,网上也有一些安装git的途径,可自行学习...

二.安装后需要一些配置

配置用户名和邮箱:

[objc] view plain copy
 技术分享技术分享
  1. $ git config --global user.name "Your Name"  
  2. $ git config --global user.email "email@example.com"  



使用 --global 修饰后设置的全局的用户,如果设置单个项目的用户,可cd到项目根目录下,执行如下命令:

[objc] view plain copy
 技术分享技术分享
  1. $ git config user.name "Your Name"  
  2. $ git config user.email "email@example.com"  


使用命令:git config --list 可查看当前用户信息以及其他的一些信息

[objc] view plain copy
 技术分享技术分享
  1. $ git config --list  
  2. core.excludesfile=/Users/mac/.gitignore_global  
  3. difftool.sourcetree.cmd=opendiff "$LOCAL" "$REMOTE"  
  4. difftool.sourcetree.path=  
  5. mergetool.sourcetree.cmd=/Applications/SourceTree.app/Contents/Resources/opendiff-w.sh "$LOCAL" "$REMOTE" -ancestor "$BASE" -merge "$MERGED"  
  6. mergetool.sourcetree.trustexitcode=true  
  7. http.postbuffer=524288000  
  8. https.postbuffer=524288000  
  9. user.email=你的邮箱@qq.com  
  10. user.name=你的用户名  
  11. macdeMacBook-Pro:~ Artron_LQQ$   

三.建立本地git仓库

1. cd到你的项目目录

[ruby] view plain copy
 技术分享技术分享
  1. $ cd /Users/mac/Desktop/GitTest  


2. 然后,输入git命令:

[objc] view plain copy
 技术分享技术分享
  1. $ git init  

输出如下:

[objc] view plain copy
 技术分享技术分享
  1. $ git init  
  2. Initialized empty Git repository in /Users/mac/Desktop/GitTest/.git/  

创建了一个空的本地仓库.

3.将项目的所有文件添加到缓存中:

[objc] view plain copy
 技术分享技术分享
  1. $ git add .  
git add . (注意,后面有个点)表示添加目录下所有文件到缓存库,如果只添加某个文件,只需把 . 换成你要添加的文件名即可;

4.将缓存中的文件Commit到git库

git commit -m "添加你的注释,一般是一些更改信息"

下面是第一次提交时的输出:

[objc] view plain copy
 技术分享技术分享
  1. $ git commit -m "添加项目"  
  2. [master (root-commit) 3102a38] 添加项目  
  3.  18 files changed, 1085 insertions(+)  
  4.  create mode 100644 GitTest.xcodeproj/project.pbxproj  
  5.  create mode 100644 GitTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata  
  6.  create mode 100644 GitTest.xcodeproj/project.xcworkspace/xcuserdata/Artron_LQQ.xcuserdatad/UserInterfaceState.xcuserstate  
  7.  create mode 100644 GitTest.xcodeproj/xcuserdata/Artron_LQQ.xcuserdatad/xcschemes/GitTest.xcscheme  
  8.  create mode 100644 GitTest.xcodeproj/xcuserdata/Artron_LQQ.xcuserdatad/xcschemes/xcschememanagement.plist  
  9.  create mode 100644 GitTest/AppDelegate.h  
  10.  create mode 100644 GitTest/AppDelegate.m  
  11.  create mode 100644 GitTest/Assets.xcassets/AppIcon.appiconset/Contents.json  
  12.  create mode 100644 GitTest/Base.lproj/LaunchScreen.storyboard  
  13.  create mode 100644 GitTest/Base.lproj/Main.storyboard  
  14.  create mode 100644 GitTest/Info.plist  
  15.  create mode 100644 GitTest/ViewController.h  
  16.  create mode 100644 GitTest/ViewController.m  
  17.  create mode 100644 GitTest/main.m  
  18.  create mode 100644 GitTestTests/GitTestTests.m  
  19.  create mode 100644 GitTestTests/Info.plist  
  20.  create mode 100644 GitTestUITests/GitTestUITests.m  
  21.  create mode 100644 GitTestUITests/Info.plist  

或者不添加注释 git commit  ,但是这样会进入vim(vi)编辑器

[objc] view plain copy
 技术分享技术分享
  1. # Please enter the commit message for your changes. Lines starting  
  2. # with ‘#‘ will be ignored, and an empty message aborts the commit.  
  3. # On branch master  
  4. # Changes to be committed:  
  5. #       modified:   LQQCircleShowImage.xcodeproj/project.pbxproj  
  6. #       modified:   LQQCircleShowImage/TableViewCell.m  
  7. #  
  8. ~                                                                                 
  9. ~                                                                                 
  10. ~                                                                                 
  11. ~                                                                                 
  12. ~                                                                                 
  13. ~                                                                                 
  14. ~                                                                                 
  15. ~                                                                                 
  16. ~                                                                                 
  17. ~                                                                                 
  18. ~                                                                                 
  19. ~                                                                                 
  20. ~                                                                                 
  21. ~                                                                                 
  22. ~                                                                                 
  23. "~/Desktop/LQQCircleShowImage/.git/COMMIT_EDITMSG" 8L, 292C  
在这里可以输入更改信息,也可以不输入,然后 按住 shift + :  ,输入wq 即可保存信息并退出vim编辑器;

四,建立远程库

在一些代码托管平台创建项目,例如github或者开源中国社区,这里已开源中国社区为例;

创建项目后,会生成一个HTTPS链接,如下:

[objc] view plain copy
 技术分享技术分享
  1. https://git.oschina.net/liuqiqiang/gitTest.git  


五,将本地的库链接到远程库

终端中输入: git remote add origin HTTPS链接

[objc] view plain copy
 技术分享技术分享
  1. $ git remote add origin https://git.oschina.net/liuqiqiang/gitTest.git  


六.上传代码到远程库,上传之前最好先Pull一下,再执行命令: git pull origin master

输出:

[objc] view plain copy
 技术分享技术分享
  1. $ git pull origin master  
  2. warning: no common commits  
  3. remote: Counting objects3, done.  
  4. remote: Total 3 (delta 0), reused 0 (delta 0)  
  5. Unpacking objects100% (3/3), done.  
  6. From https://git.oschina.net/liuqiqiang/gitTest  
  7.  * branch            master     -> FETCH_HEAD  
  8.  * [new branch]      master     -> origin/master  
  9. Merge made by the ‘recursive‘ strategy.  
  10.  README.md | 1 +  
  11.  1 file changed, 1 insertion(+)  
  12.  create mode 100644 README.md  

即pull成功,

七.接着执行:git push origin master

完成后输出:

[objc] view plain copy
 技术分享技术分享
  1. $ git push origin master  
  2. Counting objects34, done.  
  3. Delta compression using up to 4 threads.  
  4. Compressing objects100% (29/29), done.  
  5. Writing objects100% (34/34), 15.63 KiB | 0 bytes/s, done.  
  6. Total 34 (delta 3), reused 0 (delta 0)  
  7. To https://git.oschina.net/liuqiqiang/gitTest.git  
  8.    5e2dda1..537ecfe  master -> master  

即将代码成功提交到远程库!!!

接着到你的远程库查看,提交前:

技术分享

提交成功后:

技术分享


注意:操作的时候,指令不要输错了!!!!

下面这个是输错了 orgin的输出:

[objc] view plain copy
 技术分享技术分享
  1. git pull orgin master  
  2. fatal: ‘orgin‘ does not appear to be a git repository  
  3. fatal: Could not read from remote repository.  
  4.   
  5. Please make sure you have the correct access rights  
  6. and the repository exists.  

正确的应该是origin!!


如果在push的时候有如下输出:

[objc] view plain copy
 技术分享技术分享
  1. $ git push -u origin master  
  2. To https://git.oschina.net/liuqiqiang/LQQCircleShowImage.git  
  3.  ! [rejected]        master -> master (fetch first)  
  4. error: failed to push some refs to ‘https://git.oschina.net/liuqiqiang/LQQCircleShowImage.git‘  
  5. hint: Updates were rejected because the remote contains work that you do  
  6. hint: not have locally. This is usually caused by another repository pushing  
  7. hint: to the same ref. You may want to first integrate the remote changes  
  8. hint: (e.g., ‘git pull ...‘) before pushing again.  
  9. hint: See the ‘Note about fast-forwards‘ in ‘git push --help‘ for details.  

看提示可知道,需要先pull一下,即执行一次:git pull origin master

然后再执行:git push origin master



分支管理

新建分支

[objc] view plain copy
  1. $ git branch newbranch  

查看分支

[objc] view plain copy
  1. $ git branch  

输出:

[objc] view plain copy
  1. * master  
  2.   newbranch  

*代表当前所在的分支

切换分支

[objc] view plain copy
  1. $ git checkout new branch  
输出

[objc] view plain copy
  1. Switched to branch ‘newbranch‘  

切换后可用git branch查看是否切换到当前分支

[objc] view plain copy
  1. master  
  2. * newbranch  

提交改动到当前分支

[objc] view plain copy
  1. $ git add .  
  2. $ git commit -a  

可使用git status查看提交状态

接着切回主分支

[objc] view plain copy
  1. $ git checkout master  

输出:

[objc] view plain copy
  1. Switched to branch ‘master‘  

将新分支提交的改动合并到主分支上

[objc] view plain copy
  1. $ git merge newbranch  

输出:

[objc] view plain copy
  1. Updating cc73a48..93a1347  
  2. Fast-forward  
  3.  GitTest.xcodeproj/project.pbxproj                        |   9 +++++++++  
  4.  .../UserInterfaceState.xcuserstate                       | Bin 0 -> 7518 bytes  
  5.  GitTest/test.h                                           |  13 +++++++++++++  
  6.  GitTest/test.m                                           |  13 +++++++++++++  
  7.  4 files changed, 35 insertions(+)  
  8.  create mode 100644 GitTest.xcodeproj/project.xcworkspace/xcuserdata/Artron_LQQ.xcuserdatad/UserInterfaceState.xcuserstate  
  9.  create mode 100644 GitTest/test.h  
  10.  create mode 100644 GitTest/test.m  

这里我提交了两个文件,即:test.h和test.m

如果合并后产生冲突,可输入以下指令查看冲突:

[objc] view plain copy
  1. $ git diff  

修改之后,再次提交即可;

接下来,就可以push代码了:

[objc] view plain copy
  1. $ git push -u origin master  

这时可能需要你输入你的github用户名和密码,按照提示输入即可;


删除分支

[objc] view plain copy
  1. $ git branch -D newbranch  

输出

[objc] view plain copy
  1. Deleted branch newbranch (was 93a1347).  


分支管理相关资料:http://gitbook.liuhui998.com/3_3.html

使用Command Line(终端)提交代码到远程库

标签:

原文地址:http://blog.csdn.net/helloworld183/article/details/51329503

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!