如何显示mac下的.git文件
$ defaults write com.apple.finder AppleShowAllFiles TRUE
重启Finder应用,输入
$ killall Finder
当我们用git提交代码的时候可能出现
*** Please tell me who you are.
Run
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
to set your account's default identity.
Omit --global to set the identity only in this repository.
fatal: unable to auto-detect email address (got 'panruzhen@bogon.(none)')
第一种方法可以在命令行添加
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
第二种方法可以在.git文件下找到config文件打开,添加如下代码
[user]
name = XXX(自己的名称)
email = XXXX(邮箱)
搞完后就可以提交啦
pull的时候报这个东西
The working copy 'xxx' has uncommitted changes.
git rm --cached *.xcuserstate
git rm --cached *.xcuserdata
如何用命令行把本地项目上传到git
第一步:进入的项目文件,通过 git init 命令,把你项目文件夹变成git可以管理的
cd 你的项目文件路径
git init
第二步:把文件添加到版本库当中,不要忘记后面的 "." 意思是全部加进去
git add .
第三步:提交到仓库
git commit -m '提交说明'
第四步:关联远程仓库
git remote add origin https://www.xxx.xxx
第五步:获取远程库与本地同步合并(如果远程库不为空必须做这一步,否则后面的提交会失败)
git pull --rebase origin master
第六步:把本地库的内容推送到远程,实际上是把当前分支master推送到远程。执行此命令后会要求输入用户名、密码,验证通过后即开始上传
git push -u origin master
应该可以完成了