try git
Git allows groups of people to work on the same documents (often code) at the same time, and without stepping on each other's toes. It's a distributed version control system.
Our terminal prompt below is currently in a directory we decided to name "octobox". To initialize a Git repository here, type the following command:
git init
1.2 Checking the Status
Good job! As Git just told us, our "octobox" directory now has an empty repository in /.git/
. The repository is a hidden directory where Git operates.
To save your progress as you go through this tutorial -- and earn a badge when you successfully complete it -- head over to create a free Code School account. We'll wait for you here.
Next up, let's type the git status
command to see what the current state of our project is:
git status
1.3 Adding & Committing
I created a file called octocat.txt
in the octobox repository for you (as you can see in the browser below).
You should run the git status
command again to see how the repository status has changed:
git status
1.4 Adding Changes
Good, it looks like our Git repository is working properly. Notice how Git says octocat.txt
is "untracked"? That means Git sees that octocat.txt
is a new file.
To tell Git to start tracking changes made to octocat.txt
, we first need to add it to the staging area by using git add
.
git add octocat.txt
1.5 Checking for Changes
Good job! Git is now tracking our octocat.txt
file. Let's run git status
again to see where we stand:
git status
1.6 Committing
Notice how Git says changes to be committed
? The files listed here are in the Staging Area
, and they are not in our repository yet. We could add or remove files from the stage before we store them in the repository.
To store our staged changes we run the commit
command with a message describing what we've changed. Let's do that now by typing:
git commit -m "Add cute octocat story"
1.7 Adding All Changes
Great! You also can use wildcards if you want to add many files of the same type. Notice that I've added a bunch of .txt files into your directory below.
I put some in a directory named "octofamily" and some others ended up in the root of our "octobox" directory. Luckily, we can add all the new files using a wildcard with git add
. Don't forget the quotes!
git add '*.txt'
1.8 Committing All Changes
Okay, you've added all the text files to the staging area. Feel free to run git status to see what you're about to commit.
If it looks good, go ahead and run:
git commit -m 'Add all the octocat txt files'
1.9 History
So we've made a few commits. Now let's browse them to see what we changed.
Fortunately for us, there's git log
. Think of Git's log as a journal that remembers all the changes we've committed so far, in the order we committed them. Try running it now:
git log
1.10 Remote Repositories
Great job! We've gone ahead and created a new empty GitHub repository for you to use with Try Git at https://github.com/try-git/try_git.git
. To push our local repo to the GitHub server we'll need to add a remote repository.
This command takes a remote name and a repository URL, which in your case is https://github.com/try-git/try_git.git
.
Go ahead and run git remote add
with the options below:
git remote add origin https://github.com/try-git/try_git.git
1.12 Pulling Remotely
Let's pretend some time has passed. We've invited other people to our GitHub project who have pulled your changes, made their own commits, and pushed them.
We can check for changes on our GitHub repository and pull down any new changes by running:
git pull origin master
1.13 Differences
Uh oh, looks like there have been some additions and changes to the octocat family. Let's take a look at what is different
from our last commit by using the git diff
command.
In this case we want the diff of our most recent commit, which we can refer to using the HEAD
pointer.
git diff HEAD
1.14 Staged Differences
Another great use for diff
is looking at changes within files that have already been staged. Remember, staged files are files we have told git that are ready to be committed.
Let's use git add
to stage octofamily/octodog.txt
, which I just added to the family for you.
git add octofamily/octodog.txt
1.15 Staged Differences (cont'd)
Good, now go ahead and run git diff
with the --staged
option to see the changes you just staged. You should see that octodog.txt
was created.
git diff --staged
1.16 Resetting the Stage
So now that octodog is part of the family, octocat is all depressed. Since we love octocat more than octodog, we'll turn his frown around by removing octodog.txt
.
You can unstage files by using the git reset
command. Go ahead and remove octofamily/octodog.txt
.
git reset octofamily/octodog.txt
1.17 Undo
git reset
did a great job of unstaging octodog.txt, but you'll notice that he's still there. He's just not staged anymore. It would be great if we could go back to how things were before octodog came around and ruined the party.
Files can be changed back to how they were at the last commit by using the command: git checkout -- <target>
. Go ahead and get rid of all the changes since the last commit for octocat.txt
git checkout -- octocat.txt
1.18 Branching Out
When developers are working on a feature or bug they'll often create a copy (aka. branch
) of their code they can make separate commits to. Then when they're done they can merge this branch back into their main master
branch.
We want to remove all these pesky octocats, so let's create a branch called clean_up
, where we'll do all the work:
git branch clean_up
1.19 Switching Branches
Great! Now if you type git branch
you'll see two local branches: a main branch named master
and your new branch named clean_up
.
You can switch branches using the git checkout <branch>
command. Try it now to switch to the clean_up
branch:
git checkout clean_up
1.20 Removing All The Things
Ok, so you're in the clean_up
branch. You can finally remove all those pesky octocats by using the git rm
command which will not only remove the actual files from disk, but will also stage the removal of the files for us.
You're going to want to use a wildcard again to get all the octocats in one sweep, go ahead and run:
git rm '*.txt'
1.21 Commiting Branch Changes
Now that you've removed all the cats you'll need to commit your changes.
Feel free to run git status
to check the changes you're about to commit.
git commit -m "Remove all the cats"
1.22 Switching Back to master
Great, you're almost finished with the cat... er the bug fix, you just need to switch back to the master
branch so you can copy (or merge
) your changes from the clean_up
branch back into the master
branch.
Go ahead and checkout the master
branch:
git checkout master
1.23 Preparing to Merge
Alrighty, the moment has come when you have to merge your changes from the clean_up
branch into the master
branch. Take a deep breath, it's not that scary.
We're already on the master
branch, so we just need to tell Git to merge the clean_up
branch into it:
git merge clean_up
1.24 Keeping Things Clean
Congratulations! You just accomplished your first successful bugfix and merge. All that's left to do is clean up after yourself. Since you're done with the clean_up
branch you don't need it anymore.
You can use git branch -d <branch name>
to delete a branch. Go ahead and delete the clean_up
branch now:
git branch -d clean_up
1.25 The Final Push
Here we are, at the last step. I'm proud that you've made it this far, and it's been great learning Git with you. All that's left for you to do now is to push everything you've been working on to your remote repository, and you're done!
git push
try git的更多相关文章
- Git 子模块 - submodule
有种情况我们经常会遇到:某个工作中的项目需要包含并使用另一个项目. 也许是第三方库,或者你 独立开发的,用于多个父项目的库. 现在问题来了:你想要把它们当做两个独立的项目,同时又想在 一个项目中使用另 ...
- Git 在团队中的最佳实践--如何正确使用Git Flow
我们已经从SVN 切换到Git很多年了,现在几乎所有的项目都在使用Github管理, 本篇文章讲一下为什么使用Git, 以及如何在团队中正确使用. Git的优点 Git的优点很多,但是这里只列出我认为 ...
- Git与Repo入门
版本控制 版本控制是什么已不用在说了,就是记录我们对文件.目录或工程等的修改历史,方便查看更改历史,备份以便恢复以前的版本,多人协作... 一.原始版本控制 最原始的版本控制是纯手工的版本控制:修改文 ...
- Git Bash的一些命令和配置
查看git版本号: git --version 如果是第一次使用Git,你需要设置署名和邮箱: $ git config --global user.name "用户名" $ gi ...
- 在Ubuntu 16.10 安装 git 并上传代码至 git.oschina.net
1. 注册一个账号和创建项目 先在git.oschina.net上注册一个账号和新建一个project ,如project name 是"myTest". 2.安装git sudo ...
- 史上最详细git教程
题外话 虽然这个标题很惊悚,不过还是把你骗进来了,哈哈-各位看官不要着急,耐心往下看 Git是什么 Git是目前世界上最先进的分布式版本控制系统. SVN与Git的最主要的区别 SVN是集中式版本控制 ...
- [版本控制之道] Git 常用的命令总结(欢迎收藏备用)
坚持每天学习,坚持每天复习,技术永远学不完,自己永远要前进 总结日常开发生产中常用的Git版本控制命令 ------------------------------main-------------- ...
- 【解决方案】Myeclipse 10 安装 GIT 插件 集成 步骤 图解
工程开发中,往往要使用到集成GIT ,那么下面说说插件安装步骤 PS:以Myeclipse 10 为例,讲解集成安装步骤. ----------------------main------------ ...
- git 命令
切换仓库地址: git remote set-url origin xxx.git切换分支:git checkout name撤销修改:git checkout -- file删除文件:git rm ...
- git亲测命令
一.Git新建本地分支与远程分支关联问题 git checkout -b branch_name origin/branch_name 或者 git branch --set-upstream bra ...
随机推荐
- ylbtech-dbs-m-YinTai(银泰网)
ylbtech-dbs:ylbtech-dbs-m-YinTai(银泰网) -- =============================================-- DatabaseNam ...
- MAC下MySQL忘记初始密码
MAC下MySQL忘记初始密码的解决方法分享给大家,供大家参考,具体内容如下 从官网安装好MySQL的dmg后. 1 设置mysql命令 从终端输入 ? 1 mysql --version 若显示版本 ...
- C# 0-1背包问题
0-1背包问题 0-1背包问题基本思想: p[i,j]表示在前面i个物品总价值为j时的价值最大值.str[i, j]表示在前面i个物品总价值为j时的价值最大值时的物品重量串. i=0 或者j=0时: ...
- python抓包截取http记录日志
#!/usr/bin/python import pcap import dpkt import re def main(): pc=pcap.pcap(name="eth1" ...
- mod_tile编译出错 -std=c++11 or -std=gnu++11
make[1]: 正在进入文件夹 /home/wml/src/mod_tile-master' depbase=echo src/gen_tile.o | sed 's|[^/]*$|.deps/&a ...
- 设置客户端连接PostgreSQL不需要密码
平常工作中,有时需要远端连接 PostgreSQL 数据库做些维护,例如远端备份等:如果备份脚本写在远端机器,备份的时候会弹出密码输入提示,那么脚本就不能后台执行,这里总结了几种不弹出密码输入提示的方 ...
- Ubuntu系统进程绑定CPU核
Ubuntu系统进程绑定CPU核 作者:chszs.版权全部,未经允许,不得转载. 博主主页:http://blog.csdn.net/chszs 本文讲述如何在Ubuntu系统中,把指定的进程绑定到 ...
- iOS学习笔记-自己动手写RESideMenu
代码地址如下:http://www.demodashi.com/demo/11683.html 很多app都实现了类似RESideMenu的效果,RESideMenu是Github上面一个stars数 ...
- Velocity写法注意
1.$Proerty与$!{Property}的区别 比如: 简单的key-value数据格式情况下 a.<C_APP_NME>$Applicant_CAppNme</C_APP_N ...
- docker发布spring cloud应用
原文地址:http://www.cnblogs.com/skyblog/p/5163691.html 本文涉及到的项目: cloud-simple-docker:一个简单的spring boot应用 ...