விளக்க எடுத்துக்காட்டுகளுடன் பயனுள்ள 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)