Chapter - 4 - Version Control Systems Using GIT
Chapter - 4 - Version Control Systems Using GIT
50/ 96
Branching example
50/ 96
Branching example
50/ 96
Branching example
50/ 96
Branching example
50/ 96
Branching example
50/ 96
Version Control GIT Intro Local GIT Branches Remote GIT Server Bazar Extras
Branching example
50/ 96
Version Control GIT Intro Local GIT Branches Remote GIT Server Bazar Extras
Branching example
50/ 96
Version Control GIT Intro Local GIT Branches Remote GIT Server Bazar Extras
Branching example
50/ 96
Version Control GIT Intro Local GIT Branches Remote GIT Server Bazar Extras
Branching example
50/ 96
Version Control GIT Intro Local GIT Branches Remote GIT Server Bazar Extras
Branching example
50/ 96
Version Control GIT Intro Local GIT Branches Remote GIT Server Bazar Extras
Branching example
50/ 96
Version Control GIT Intro Local GIT Branches Remote GIT Server Bazar Extras
Branching example
50/ 96
Version Control GIT Intro Local GIT Branches Remote GIT Server Bazar Extras
Branching example
50/ 96
Version Control GIT Intro Local GIT Branches Remote GIT Server Bazar Extras
Branching example
50/ 96
Version Control GIT Intro Local GIT Branches Remote GIT Server Bazar Extras
Branching example
50/ 96
Version Control GIT Intro Local GIT Branches Remote GIT Server Bazar Extras
Branching example
50/ 96
Version Control GIT Intro Local GIT Branches Remote GIT Server Bazar Extras
Branching example
50/ 96
Version Control GIT Intro Local GIT Branches Remote GIT Server Bazar Extras
Branching example
50/ 96
Version Control GIT Intro Local GIT Branches Remote GIT Server Bazar Extras
Branching example
50/ 96
Version Control GIT Intro Local GIT Branches Remote GIT Server Bazar Extras
Branching example
50/ 96
Version Control GIT Intro Local GIT Branches Remote GIT Server Bazar Extras
Branching example
50/ 96
git Commands
• To create a new git repository
git init
• This command works in an empty directory or in an existing project
directory. It creates a .git subdirectory in that directory where it stores all
of the information about the repository
• On Unix-based systems calling it “.git” makes the directory “invisible”
• If you have a set of changes “staged”, you can commit them to the
repository with the command
git commit
• An editor will open where you can type the log message for the commit
git Commands
• To view the current status of a repo
git status
• This will show what branch you are on, what changes there are in the
working directory, and what changes have been staged
• If you have a modified file or a new directory that you want to “stage”:
git add <fileOrDirName>
• If you want to get rid of a file or directory:
git rm <fileOrDirName>
• If you want to rename a file or directory:
git mv <oldFileOrDirName> <newFileOrDirName>
git Commands
• To see the current branches:
git branch
• To create a new branch
git checkout -b <newBranchName>
• To switch to an existing branch
git checkout <branchName>
• To push commits to a remote repository
git push
• To retrieve commits from a remote repository
git pull
1. GitLab Basics 3. GitLab Issue Tracker
•GitLab - Create Issue
•GitLab - Introduction
•GitLab - Merge Requests
•GitLab - Installation
•GitLab - Referencing Issues
•GitLab - Git Commands
•GitLab - Milestones
•GitLab - SSH Key Setup
•GitLab - Wiki Pages
•GitLab - Create Project
•GitLab - Fork a Project
•GitLab - Create a Branch 4.GitLab Instance Management
•GitLab - Add a File
•GitLab - Create Backup
•GitLab - Rebase Operation
•GitLab - Restore Backup
•GitLab - Squashing Commits
•GitLab - Import Repository