感谢支持
我们一直在努力

Git管理本地代码

安装Git

$sudo apt-get install git
$sudo apt-get install git-core

更新Git

$git clone git://git.kernel.org/pub/scm/git/git.git

安装好git后在终端输入git 命令会显示git命令提示,证明git已经安装成功。

初始化代码仓库

$mkdir Android4.2
$cd android4.2
$git init

提示: Initialized empty Git repository in /data/Downloads/Git/android4.2/.git/证明git仓库(repository)创建成功
配置config文件(全局)

$cd .git
$vim config

该配置文件的原始内容为:

[core]
        repositoryformatversion = 0
        filemode = true
        bare = false
        logallrefupdates = true

在该配置文件中加入以下内容:

[receive]
denyCurrentBranch = ignore

加入该配置的目的是:允许使用git push 提交代码到服务器,否则会出现以下异常:

加入该配置的目的是:允许使用git push 提交代码到服务器,否则会出现以下异常:
remote: error: refusing to update checked out branch: refs/heads/master
remote: error: By default, updating the current branch in a non-bare repository
remote: error: is denied, because it will make the index and work tree inconsistent
remote: error: with what you pushed, and will require ‘git reset –hard’ to match
remote: error: the work tree to HEAD.
remote: error:
remote: error: You can set ‘receive.denyCurrentBranch’ configuration variable to
remote: error: ‘ignore’ or ‘warn’ in the remote repository to allow pushing into
remote: error: its current branch; however, this is not recommended unless you
remote: error: arranged to update its work tree to match what you pushed in some
remote: error: other way.
remote: error:
remote: error: To squelch this message and still keep the default behaviour, set
remote: error: ‘receive.denyCurrentBranch’ configuration variable to ‘refuse’.
To git@192.168.1.X:/var/git.server/…/web
! [remote rejected] master -> master (branch is currently checked out)
error: failed to push some refs to ‘git@192.168.1.X:/var/git.server/…/web’

在代码仓库创建一个说明文档(该文档可以随便创建)

$touch spec.txt

备注:如果初始的代码仓库为空,git push origin master提交代码的时候会出现以下异常:

error: src refspec master does not match any.
error: failed to push some refs to ‘/data/Downloads/Git/android4.2/.git
因此我们需要在初始化代码仓库之后,在仓库中创建一个文件:

实例:

$touch spec.txt
$git add spec.txt
$git commit-a -m “first commit”
$git push

此时,基本的代码仓库已经创建完成。本地代码仓库的Git库为:/data/Downloads/Git/android4.2/.git

同步代码

创建myprojects目录,同步代码

$mkdir Download/myprojects
$git clone /data/Downloads/Git/Android4.2/.git

修改文件

$touch test.txt

(备注:在这里可以编写和更改文件,本文只是讲解Git库的使用,所以只是简单的创建了一个文件)

使用git diff 和 git status 命令可以查看代码当前的状态

提交代码

$git add test.text
$git commit -a -m “second commit”
$git push orgin master

查看log信息

查看代码仓库中代码是否提交成功

进入代码仓库目录,查看代码提交log

$cd android4.2
$git log

能够查看代码提交的log信息,但是却无法看到我们提交的代码,怎么回事呢?

如果使用了git init初始化,则远程仓库的目录下,也包含work tree,当本地仓库向远程仓库push时, 如果远程仓库正在push的分支上(如果当时不在push的分支,就没有问题), 那么push后的结果不会反应在work tree上,  也即在远程仓库的目录下对应的文件还是之前的内容。

使用以下命令即可查看提交的内容

$git reset –hard

回退到当前最新(本地最新)提交的代码信息

我们在项目开发时,只需要提交我们编写的源码,其他由编译器生成的如:

*.project
*.classpath
.settings/

等文件,我们不需要提交到代码库中。因此我们需要过滤这些特殊文件,具体做法如下所述:

在仓库目录下创建一个名为.gitignore文件

gitignore文件均为如下格式:

# 以’#’开始的行,被视为注释.                                                                                                                         

# 忽略掉所有文件名是 foo.txt的文件.

foo.txt

# 忽略所有生成的 html文件,

*.html

# foo.html是手工维护的,所以例外.

!foo.html

# 忽略所有.o和 .a文件.

*.[oa]
 

实例:

# 忽略*.o和*.a文件

 *.[oa]

# 忽略*.b和*.B文件,my.b除外

*.[bB]

!my.b

# 忽略dbg文件和dbg目录

dbg

# 只忽略dbg目录,不忽略dbg文件

dbg/

# 只忽略dbg文件,不忽略dbg目录

dbg

!dbg/

# 只忽略当前目录下的dbg文件和目录,子目录的dbg不在忽略范围内

/dbg

具体文件:

##### ignore auto-generated files by eclipse #####

*.project
*.classpath
.settings/
.gitignore

##### ignore all folder except source codes #####
assets/
docs/
images/
gen/
libs/
bin/
tests/bin/
tests/coverage/
tests/coverage.em
tests/instrumented
tests/gen/
tests/res/
tests/libs/
tests/run_test.sh

##### ignore fixed files #####
*.log
*.class
*.dex
*.odex
*.html
*.xsl
*.zip
*.patch
*.swp
*.db

至此,大家就可以轻松的管理自己的代码了,Boss再也不用担心代码问题了。

赞(0) 打赏
转载请注明出处:服务器评测 » Git管理本地代码
分享到: 更多 (0)

听说打赏我的人,都进福布斯排行榜啦!

支付宝扫一扫打赏

微信扫一扫打赏