અહીં ઉપયોગી ગિટ આદેશોની વિગતવાર સૂચિ છે, ઉદાહરણરૂપ ઉદાહરણો સાથે:
git init
તમારી પ્રોજેક્ટ ડિરેક્ટરીમાં નવી ગિટ રિપોઝીટરી શરૂ કરો.
ઉદાહરણ:
$ 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)