git的安装、home brew的安装/在官网创建项目
2017-04-05 本文已影响51人
张家杰仔
在官网上创建项目
52565249.png
GIT的使用
http://www.cnblogs.com/wang_yb/p/3867221.html
命令:
git网址:http://git.mydoc.io/?t=85189
home brew网址: http://brew.sh
查看电脑git 版本在终端: git version
查看home brew 版本 brew -v
git使用:
1.打开桌面
cd Desktop/ clear(清屏)
2.显示所有内容
ls
3.创建文件夹
mkdir
4.打开创建的文件夹
cd …
5.把仓库里面的文件克隆到本地文件夹
git clone …(https)
6.输入用户名 密码
7.查看git状态
git status
8.添加本地新增的改变文件
git add (工程名)/
9.本地确认将要push 的文件,并做好标注
git commit -m "init project"
10.推送本地已经commit的变动
git push
(On branch master
Your branch is ahead of 'origin/master' by 1 commit.
(use "git push" to publish your local commits)
nothing to commit, working directory clean)没有需要确认的项了
11.git push