Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

git lang

# Main git commands

# Configurations

git config --global user.name "Sam Smith"
git config --global user.email sam@example.com

# New Repository

git init

# Copy local repository

git clone /path/to/repository 

# Copy local repository for remote servers

git clone username@host:/path/to/repository

# Add files

git add <filename>

git add *

# Git Commits

git commit -m "Commit message"

# Commit any files added with git add command

git commit -a

# Push changes to master branch

git push origin master

# Check the status of files

git status

# Connect to remote repository

git remote add origin <server>

# Provide a list of recently configured remote repositories

git remote -v

# Create new branch then switch to it

git checkout -b <branchname>

# Switch branches

git checkout <branchname>

#List all branches in repository

git branch

# Delete the feature branch 

git branch -d <branchname>

# Push selected branch to your remote repository

git push origin <branchname>

# Push all branches to remote repository

git push --all origin

# Delete a branch on the remote repository

git push origin :<branchname>

# Fetch and merge changes on remote server to certain directory

git pull

# Merge a different branch into active branch

git merge <branchname>

# View merge conflicts

git diff

git diff --base <filename>

git diff <sourcebranch> <targetbranch>

# Mark changed file

git add <filename>

# Utilise tagging to mark a certain changeset

git tag 1.0.0 <commitID>

# Get changeset ID

git log

# Push all tags to remote repository

git push --tags origin

# Undo local changes, replace changes

git checkout -- <filename>

# Drop all changes and commits

git fetch origin

git reset --hard origin/master

# Search the working directory for foo(); (example)

git grep "foo()"
Comment

PREVIOUS NEXT
Code Example
Shell :: how to open .bin file in linux 
Shell :: remove git proxy 
Shell :: where is path on klai linux 
Shell :: extract tar.gz in linux 
Shell :: how to install apache2 on ubuntu 20.04 
Shell :: how to install terraform on Ubuntu/Debian 
Shell :: gcloud app deploy 
Shell :: how to install jupyter notebook 
Shell :: # /bin/bash for launching ec2 
Shell :: git checkout previous commit 
Shell :: linux print system info 
Shell :: diff specific file git different branches 
Shell :: silent install google chrome powershell 
Shell :: open a pdf on linux 
Shell :: bash for loop parallel 
Shell :: bash merge pdf 
Shell :: how to start cron job 
Shell :: github readme.md add image 
Shell :: squash commit history git 
Shell :: flutter Android sdkmanager not found. Update to the latest Android SDK and ensure that the cmdline-tools are installed to resolve this. 
Shell :: vlc ubuntu 
Shell :: curl install docker-compose linux 
Shell :: remove mongo lock file from centos 7 
Shell :: fedora microsoft font 
Shell :: fix kde root themes 
Shell :: git current branch 
Shell :: git flow new feature branch 
Shell :: batch for loop 
Shell :: install latest node js ubuntu 
Shell :: applescript copy to clipboard 
ADD CONTENT
Topic
Content
Source link
Name
2+2 =