git 基础版

本文主要是简单介绍下git的基本用法


一、安装

linux中安装很简单,用apt-get install git(centos用yum) 就完成了安装。os x的话,用brew install git。安装好后,在终端敲git,显示如下表示安装成功。

appledeMacBook-Pro:~ apple$ git
usage: git [--version] [--help] [-C <path>] [-c name=value]
           [--exec-path[=<path>]] [--html-path] [--man-path] [--info-path]
           [-p | --paginate | --no-pager] [--no-replace-objects] [--bare]
           [--git-dir=<path>] [--work-tree=<path>] [--namespace=<name>]
           <command> [<args>]
安装后再配置下用户和密码

git config --global user.name "Your Name"
git config --global user.email "email@example.com"

二、创建第一个仓库

appledeMacBook-Pro:~ apple$ mkdir test_git
appledeMacBook-Pro:~ apple$ cd test_git
appledeMacBook-Pro:test_git apple$ git init
Initialized empty Git repository in /Users/apple/test_git/.git/

查看当前目录下是否有个.git目录

appledeMacBook-Pro:test_git apple$ ls -ah
.  .. .git

三、提交代码到仓库

添加文件到Git仓库,分两步:

appledeMacBook-Pro:test_git apple$ git add first.py
appledeMacBook-Pro:test_git apple$ git status
On branch master

Initial commit

Changes to be committed:
  (use "git rm --cached <file>..." to unstage)

   new file:   first.py

appledeMacBook-Pro:test_git apple$ git commit -m "my first commit"
[master (root-commit) a5813c6] my first commit
 1 file changed, 1 insertion(+)
 create mode 100644 first.py

首先,你先将要提交的文件用git add  <file_name> 加入缓存区(这时候你可以查看缓存区现在有什么东西改变),确定修改后用git commit -m "填写此次提交说明"


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值