సచిత్ర ఉదాహరణలతో పాటు ఉపయోగకరమైన Git ఆదేశాల యొక్క వివరణాత్మక జాబితా ఇక్కడ ఉంది:
git init
మీ ప్రాజెక్ట్ డైరెక్టరీలో కొత్త Git రిపోజిటరీని ప్రారంభించండి.
ఉదాహరణ:
$ git init
Initialized empty Git repository in /path/to/your/project/.git/
git clone [url]
సర్వర్ నుండి మీ స్థానిక యంత్రానికి రిమోట్ రిపోజిటరీని క్లోన్ చేయండి.
ఉదాహరణ:
$ git clone https://github.com/yourusername/your-repo.git
Cloning into 'your-repo'...
git add [file]
ఒక కోసం సిద్ధం చేయడానికి స్టేజింగ్ ప్రాంతానికి ఒకటి లేదా అంతకంటే ఎక్కువ ఫైల్లను జోడించండి commit.
ఉదాహరణ:
$ git add index.html
$ git add *.css
git commit -m "message"
commit స్టేజింగ్ ప్రాంతానికి జోడించిన మార్పులతో కొత్తదాన్ని సృష్టించండి మరియు మీ commit సందేశాన్ని చేర్చండి.
ఉదాహరణ:
$ git commit -m "Fix a bug in login process"
[main 83a9b47] Fix a bug in login process
1 file changed, 5 insertions(+), 2 deletions(-)
git status
సవరించిన ఫైల్లు మరియు స్టేజింగ్ ఏరియాతో సహా రిపోజిటరీ యొక్క ప్రస్తుత స్థితిని వీక్షించండి.
ఉదాహరణ:
$ git status
On branch main
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
modified: index.html
no changes added to commit(use "git add" and/or "git commit -a")
git log
commit రిపోజిటరీ చరిత్రను ప్రదర్శించండి .
ఉదాహరణ:
$ git log
commit 83a9b4713f9b6252bfc0367c8b1ed3a8e9c75428(HEAD -> main)
Author: Your Name <[email protected]>
Date: Mon Jul 13 12:34:56 2023 +0200
Fix a bug in login process
commit 47f1c32798b7e862c4c69718abf6498255f1a3d2
Author: Your Name <[email protected]>
Date: Sun Jul 12 18:42:15 2023 +0200
Add new homepage
git branch
రిపోజిటరీలోని అన్ని శాఖలను జాబితా చేయండి మరియు ప్రస్తుత శాఖను గుర్తించండి.
ఉదాహరణ:
$ git branch
* main
feature/add-new-feature
feature/fix-bug
git checkout [branch]
రిపోజిటరీలోని మరొక శాఖకు మారండి.
ఉదాహరణ:
$ git checkout feature/fix-bug
Switched to branch 'feature/fix-bug'
git merge [branch]
ప్రస్తుత శాఖలో మరొక శాఖను విలీనం చేయండి.
ఉదాహరణ:
$ git merge feature/add-new-feature
Updating 83a9b47..65c6017
Fast-forward
new-feature.html| 10 ++++++++++
1 file changed, 10 insertions(+)
create mode 100644 new-feature.html
git pull
రిమోట్ రిపోజిటరీ నుండి ప్రస్తుత శాఖలో మార్పులను పొందండి మరియు ఏకీకృతం చేయండి.
ఉదాహరణ:
$ git pull origin main
From https://github.com/yourusername/your-repo
* branch main -> FETCH_HEAD
Already up to date.
git push
ప్రస్తుత శాఖ నుండి రిమోట్ రిపోజిటరీకి మార్పులను పుష్ చేయండి.
ఉదాహరణ:
$ git push origin main
git remote add [name] [url]
మీ రిమోట్ రిపోజిటరీల జాబితాకు కొత్త రిమోట్ సర్వర్ని జోడించండి.
ఉదాహరణ:
$ git remote add upstream https://github.com/upstream-repo/repo.git
git fetch
రిమోట్ రిపోజిటరీల నుండి మార్పులను డౌన్లోడ్ చేసుకోండి కానీ ప్రస్తుత బ్రాంచ్లో విలీనం చేయవద్దు.
ఉదాహరణ:
$ git fetch origin
git diff
స్టేజింగ్ ప్రాంతం మరియు ట్రాక్ చేయబడిన ఫైల్ల మధ్య మార్పులను సరిపోల్చండి.
ఉదాహరణ:
$ git diff
git reset [file]
స్టేజింగ్ ప్రాంతం నుండి ఫైల్ను తీసివేసి, దానిని మునుపటి స్థితికి మార్చండి.
ఉదాహరణ:
$ git reset index.html
git stash
నిబద్ధత లేని మార్పులను వేరొక శాఖలో పని చేయకుండా వాటిని తాత్కాలికంగా సేవ్ చేయండి.
ఉదాహరణ:
$ git stash
Saved working directory and index state WIP on feature/branch: abcd123 Commit message
git remote -v
రిమోట్ సర్వర్లు మరియు వాటి url చిరునామాలను జాబితా చేయండి.
ఉదాహరణ:
$ git remote -v
origin https://github.com/yourusername/your-repo.git(fetch)
origin https://github.com/yourusername/your-repo.git(push)
upstream https://github.com/upstream-repo/repo.git(fetch)
upstream https://github.com/upstream-repo/repo.git(push)