Skip to content

Instantly share code, notes, and snippets.

@anandrathnas
Last active March 4, 2024 10:33
Show Gist options
  • Save anandrathnas/23b9f6a9d458f1e45b5cf0c119db4870 to your computer and use it in GitHub Desktop.
Save anandrathnas/23b9f6a9d458f1e45b5cf0c119db4870 to your computer and use it in GitHub Desktop.

Create a branch from current and push to remote

git checkout -b branch_name
git push --set-upstream origin branch_name

Get remote repo url

git config --get remote.origin.url

Reduce .git file size

git reflog expire --all --expire=now && git gc --prune=now --aggressive

Change git remote url

git remote -v
git remote set-url origin https://github.com/anandrathnas/pixel-geeks.git
git remote -v

New repo add README.md

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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment