记录提交PR

1.先有仓库
git clone xxx
2.查看远程仓库
git remote -v
3.同步最新仓库
git fetch origin
4.创建并切换分支
git checkout -b 0910 origin/main
5.添加到暂存区
git add .
6.提交到版本库
git commit -s -m “feat: modify init_node script”
7.添加远程仓库
git remote add yhl [email protected]:0478yhl/rainbond-console.git
8.显示远程仓库
git remote -v
9.把本地的commit推上去
git push yhl 0910
10.如果有问题想重新提交则
git log
git reset 599daa51b
git add .
git commit -s -m “feat: modify init_node script”
git push yhl 0910 -f

你可能感兴趣的:(Job,github)