-
Edit the Git Configuration File
git config --global --edit
-
git init
Initialize a new Git repository in the current directory
-
To remove the version history
rm -rf .git
The command rm -rf .git is a Unix/Linux command used to remove a Git repository directory. Here’s what it does:
rm
: The command used to remove files or directories.-r
: Stands for "recursive," allowing the command to delete directories and their contents recursively.-f
: Stands for "force," ignoring nonexistent files and suppressing confirmation prompts..git
: The directory that stores the Git repository metadata and history.
-
git clone
repository-urlClone a remote repository into the current directory
-
git status
Check the status of the repository (e.g., modified files, untracked files)
-
git add
Command-
git add file-or-directory: Adds a specific file or directory to the staging area, preparing it for the next commit.
-
git add
.
: Adds all changes (modified, deleted, new files) in the current directory and its subdirectories to the staging area.
-
-
git reset
.Use git reset when you want to unstage changes without discarding them, allowing you to adjust or re-stage different files before committing.
-
git reset --soft HEAD~1
If you want to undo a commit but keep the changes in your working directory.
-
git checkout
Command-
git checkout -- file-name:
Discards changes in the specified file and restores it to its last committed
-
git checkout branch-name:
Switches the working directory to the specified branch.
-
git checkout commit-hash:
Switches the working directory to the state of the specified commit.
-
git checkout -b new-branch:
Creates a new branch and switches to it immediately.
-
-
git commit -m
"Your commit message here"Commit the staged changes with a descriptive message
-
git log
Show a list of all the commits in the current branch
-
git push origin
branch-namePush changes from the local repository to the remote repository
-
git pull origin
branch-namePull the latest changes from the remote repository to the local repository
-
git branch
new-branch-nameCreate a new branch
-
git merge
branch-nameMerge a specified branch into the current branch
-
git diff
commit-id-or-branch commit-id-or-branchView a summary of the changes between two commits or branches
-
git branch -d
branch-nameDelete a branch locally
-
git reset
--hard HEADReset the staging area and working directory to the state of the last commit
-
git stash
Stash changes in the working directory temporarily
-
git stash
applyApply stashed changes back to the working directory
-
git push origin
--delete branch-nameDelete a remote branch
-
git remote add origin
new-repository-urlAdd a new remote repository or change the URL of an existing one
-
Add or Update an Alias
git config --global alias.<alias-name> '<command>'
-
List All Aliases
Display all the aliases you have set.
git config --get-regexp alias
-
Remove an Alias
Remove a specific alias.
git config --global --unset alias.<alias-name>
-
Add an Alias for a Complex Command
Create an alias for a more complex command.
git config --global alias.st 'status -s'
-
Switch to the Branch You Want to Rename:
git checkout old-branch-name
-
Rename the Branch:
# (-m or --move) git branch -m new-branch-name
-
Push the Renamed Branch to Remote (if the branch exists on the remote):
# -u => The -u flag in Git is short for --set-upstream. It is used when pushing a branch to a remote repository to set the upstream (tracking) reference git push origin -u new-branch-name
-
Delete the Old Branch from Remote (if the branch exists on the remote):
git push origin --delete old-branch-name
-
1️⃣
Start an Interactive Rebase
Command:git rebase -i <commit>~
What it does:
- Starts an interactive rebase from the commit before the one you want to modify.
- The
~
ensures Git includes that commit for editing. - To find the commit ID, use:
Example log:
git log --oneline
If you want to modifya1b2c3d Fixing UI bug e4f5g6h Added new feature i7j8k9l Initial commit
e4f5g6h
, run:git rebase -i e4f5g6h~
-
2️⃣
Edit the Commit
What happens next:
- Git opens an editor (like Vim or VS Code) listing commits:
pick e4f5g6h Added new feature pick a1b2c3d Fixing UI bug
- Change
pick
toedit
on the target commit:edit e4f5g6h Added new feature pick a1b2c3d Fixing UI bug
- Save and exit (In Vim: press
Esc
, type:wq
, and pressEnter
).
- Git opens an editor (like Vim or VS Code) listing commits:
-
3️⃣
Remove the Unwanted File
Command:
git rm <unwanted-file>
What it does:
- Deletes the file from the commit without affecting other files.
- Example: If you accidentally committed
secrets.txt
, remove it:git rm secrets.txt
-
4️⃣
Amend the Commit
Command:
git commit --amend
What it does:
- Opens the commit message editor so you can re-save the commit without the removed file.
- You don’t need to change the message—just save and exit.
- The commit is now modified with the file removed.
-
5️⃣
Continue the Rebase
Command:
git rebase --continue
What it does:
- Tells Git to continue applying the rest of the commits on top of the modified one.
- If there are conflicts, Git will ask you to resolve them before proceeding.