Git创建仓库并本地上传

首次配置

  • 删除当前目录及其子目录下所有.git文件夹:
find . -type d -name '.git' -exec rm -rf {} +
find . -type d -name '.github' -exec rm -rf {} +
  • 登上github,创建自己的仓库
  • 右上角头像Settings -> Developer settings -> Personanl access tokens -> Tokens(classic) -> 勾选repo | 获得密钥
  • git clone 自己仓库名,并以刚刚生成的密钥作为密码
git config --global credential.helper cache
git config --global credential.helper store
#以后就不用每次都输入帐号密码
  • 把要上传的东西放到克隆下来的文件夹中
  • cd进入这个文件夹,执行
git add .
git commit -m "first commit"
git push origin main # 可用 git branch查看分支

后续如果只更新了部分文件,可以使用git add filename

拉取更新

  • 项目拉到本地后,如果远程仓库被修改了,使用git pull origin branch-name更新

查看/切换分支

  • 本地分支git branch
  • 远程分支git branch -r
  • 切换分支git checkout branch-name
  • 删除分支git branch -d branch-name
  • git push origin --delete branch-name

创建分支

  • 克隆仓库到本地
git checkout -b branch-name

完成更改后addcommit

  • 推送分支
git push origin branch-name

克隆分支

  • git clone -b branch-name url

撤销本地最近一次添加

git reset --soft HEAD~1
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值