Mac下Git安装及配置
Mac下:
1、下載git版本并安裝
運行終端
- ?? 查看git版本:
bogon:~ yan$ git --version
git version 2.16.3
- ??? 配置gitconfig文件
?? vim ~/.gitconfig
?? 點擊i進入編輯模式
? bogon:~ yan$ vim ~/.gitconfig
[user]name=guanxyemail=999999999@qq.com [alias]co=checkoutci=commit st=statuspl=pullps=pushdt=difftoolca=commit -amb=branch ~? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? -- INSERT --
Esc? :wq 退出編輯模式
可以輸入git st 查看
/******Git 配置完成******************/
?
2、建立git項目
??? 在gitHub或者碼云上新建賬戶,我這里是在碼云上建的https://gitee.com/--新建項目
??? 點擊項目--管理--部署公鑰管理--公鑰管理--添加部署公鑰
bogon:~ yan$ ls -allbogon:~ yan$ cd .ssh/bogon:.ssh yan$ ls -albogon:.ssh yan$ cat id_rsa.pub //查看生成的公鑰,并復制ssh-keygen -t rsa -C "xxx@xmail.com" //生成秘鑰ssh-rsa xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx 把公鑰添加到https://gitee.com/profile/sshkeys //添加個人公鑰bogon:~ yan$ mkdir ReactHappyMmallDoc //本地新建一個文件夾bogon:~ yan$ cd ReactHappyMmallDoc
bogon:ReactHappyMmallDoc yan$ ls
bogon:ReactHappyMmallDoc yan$ git clone 項目路徑
//切換到項目路徑,把本地項目關聯到遠程目錄
bogon:ReactHappyMmallDoc yan$ lsReact_happymmalbogon:ReactHappyMmallDoc yan$ cd React_happymmal bogon:React_happymmal yan$ ls README.md bogon:React_happymmal yan$ ls -al
bogon:React_happymmal yan$ vim .gitignore?? //添加一個gitignore來忽略一些我們不需要的東西
bogon:React_happymmal yan$ git st
bogon:React_happymmal yan$ git add .?????? //把gitignore提交到本地
bogon:React_happymmal yan$ git ca "initial"???? //把gitignore提交到遠程
bogon:React_happymmal yan$ git ps???? //推送到遠程
?
轉載于:https://www.cnblogs.com/cristina-guan/p/8834340.html
總結
以上是生活随笔為你收集整理的Mac下Git安装及配置的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 【数据结构】ArrayList原理及实现
- 下一篇: 理解UIView的绘制