Create a branch from current and push to remote
git checkout -b branch_name
git push --set-upstream origin branch_name
git config --get remote.origin.url
git reflog expire --all --expire=now && git gc --prune=now --aggressive
git remote -v
git remote set-url origin https://github.com/anandrathnas/pixel-geeks.git
git remote -v
echo " # pixel-geeks" >> README.md
git init
git add README.md
git commit -m " first commit"
git branch -M main
git remote add origin https://github.com/anandrathnas/pixel-geeks.git
git push -u origin main
Push a local repo to remote
git remote add origin https://github.com/anandrathnas/pixel-geeks.git
git branch -M main
git push -u origin main
Setup user name and email at repo level
git -c core.quotepath=false -c log.showSignature=false config user.name anand
git -c core.quotepath=false -c log.showSignature=false config user.email [email protected]
[DANGER] Delete all previous commits in remote
git checkout --orphan main1
git add -A
git commit -am " first commit"
git branch -D main
git branch -m main
git push -f origin main
git branch --set-upstream-to=origin/main main