Nemo

Nemo 关注TA

路漫漫其修远兮,吾将上下而求索。

Nemo

Nemo

关注TA

路漫漫其修远兮,吾将上下而求索。

  • 加入社区3,279天
  • 写了1,496,113字

标签 > 标签文章:#github# (共有12文章)

  • Git分支管理的基本操作

    首先从远端版本库clone下来一个全新的库:gitcloneusername@xxx:/xxx/xxx.git此时clone下来的,只是master分支,没有其他分支。查看分支:gitbranch#查看本地分支gitbranch-r#查看远端分支gitbranch-a#查看所有分支,包括本地和远程的分支名前面有*的,就是当前所在分支。分支名型如remote/origin/xxx的,就是远端分支。创......

     5,527    0    2017-08-03 17:15

  • Git Flow命令示例

    创建feature分支gitcheckoutdevgitcheckout-bfeature-s16在feature分支上进行开发gitaddxxxgitcommitxxx#多人协作在同一个feature分支上进行开发时,使用rebase合并远程分支gitcheckoutfeature-s16gitfetchorigingitrebaseorigin/feature-s16gitpushorigin......

     2,412    0    2017-05-24 10:55

  • Git常用命令

    命令行不用每次输入密码gitconfigcredential.helperstore正确使用fetch/merge#gitpull=gitfetch+gitmergeFETCH_HEAD#一般少用gitpull,推荐用gitfetch <remote>+gitmerge <remote>/ <refspec>,可以更灵活地控制流程(......

     3,822    0    2017-05-24 10:54

  • 【Git】fatal: Unable to create '/.git/index.lock': File exists.

    $gitadd-Afatal:Unabletocreate'/home/nemo/workpace/workpace01/Kira/.git/index.lock':Fileexists.Anothergitprocessseemstoberunninginthisrepository,e.g.aneditoropenedby'gitcommit'.Pleasemakesureallprocess......

     3,600    0    2017-05-02 19:18

  • git commit 之前撤销

    ImistakenlyaddedfilesusingthecommandgitaddfileIhave not yetrun gitcommit.Isthereawaytoundothisorremovethesefilesfromthecommit?Youwant:gitrm--cached<added_file_to_undo>Reasoning:Al......

     4,375    0    2017-04-10 10:00

  • git 忽略指定文件

     有些文件是我们并不想加入也无需被添加到Git管理中,同时也不希望他出现在未跟踪列表中。例如在编译过程中生成的o文件。“.gitignore”文件可以达到这个效果。 .gitignore有全局和局部两种:    全局:   通过修改全局配置gitconfig中的excludesfile指定全局忽略文件。设置方法:$gitconf......

     1,738    0    2017-04-10 09:53

  • Not currently on any branch.

    gitrebase后发现命令错误,赶紧ctrl+c撤销操作。重新rebase后提交发现失败,然后就发现了如下的问题。nemo@Cynthia:~/git_work01/lambda$gitstatusNotcurrentlyonanybranch.nothingtocommit,workingdirectoryclean解决方案如下:切换到该分支gitcheckoutorigin/dev_s17_......

     3,338    0    2017-03-08 16:46

  • git stash 和 git stash pop

    gitstash可用来暂存当前正在进行的工作,比如想pull最新代码,又不想加新commit,或者另外一种情况,为了fix一个紧急的bug, 先stash,使返回到自己上一个commit,改完bug之后再stashpop,继续原来的工作。基础命令:$gitstash$dosomework$gitstashpop进阶:git stash save "worki......

     1,490    0    2017-02-28 16:01

  • git常用操作指令集合

    创建feature分支gitcheckoutdevgitcheckout-bfeature-s16在feature分支上进行开发gitaddxxxgitcommitxxx#多人协作在同一个feature分支上进行开发时,使用rebase合并远程分支gitcheckoutfeature-s16gitfetchorigingitrebaseorigin/feature-s16gitpushorigin......

     2,675    0    2017-02-27 13:44

  • Git 切换分支

    查看git分支$gitbranch切换到指定分支$gitcheckout xxxx切换完成之后,如果当前分支代码不是最新,那么则需要拉取最新代码$gitpull

     1,709    0    2017-01-11 11:02

  • git基本操作

    -- 提交git add -Agit commit -m"提交描述"git push origin  branchName-- 拉数据git fetch origin--合并git rebase origin branchName &nbs......

     3,936    0    2017-01-04 14:16

  • Git clone failed

    gitclone的时候返回错误信息:early EOF The remote end hung up unexpectedly index-pack failed RPC failed; curl 56 SSL read: error:00......

     2,982    0    2016-12-27 14:22

  • 1