Answers for "git commands"

28

git commands

 …or create a new repository on the command line
git init
git add .
git commit -m "first commit"
git remote add origin https://github.com/metinkaya1511/FinraDeck.git 
(GitHub’daki adres)
git push -u origin master
…push an existing repository from the command line
git remote add origin https://github.com/metinkaya1511/FinraDeck.git  
(github adresi)
git push -u origin master 
CREATE BRANCH
-   git branch develop ==> it creates new branch named 'develop' but still 
keep being on master branch
-   git checkout develop ==> it will change your branch to the develop branch
git checkout -b develop ==> it creates also a branch named develop and 
switches to it automatically
DELETE
git branch -d <branch_name> deletes the branch. If we have unmerged changes, 
this command gives a warning and does not delete.  
git branch -D <branch_name> deletes the branch even if it has unmerged changes.
Gives no warning.
SWITCH to Branch
git checkout develop checks out the branch, switches to the branch.
git checkout -b <branch_name> creates a new branch and switches to it.  
git merge <branch_name>  this command takes changes from the given branch, 
and merges with the current branches we are on.
Posted by: Guest on December-04-2020
4

git commands

# Create a Repository or Initialize Git in folder
git init

# Add Files
git add . #All Files
git add <filename> ##Single File

# Commit the Changes
git commit -m "first commit"

# Remote Repository
git remote add "Remote Name" <link from github>
git remote add origin https://github.com/samytech/New-Projects.git  (Git Address with .git in the end)

# View Remote Branches 
git remote -v 

# Pull updated files from branch
git pull <remote_name> <branch_name> 
git pull pro master

# Remove Remote branch from local
git remote remove <branch_name>  ==>  The git remote remove command removes a remote from a local repository.
git remote rm <branch_name> ==> You can use the shorter git remote rm command too.

# Final Step (Push in Master Branch)
git push -u origin master

# Check changes 
git status

# Check Git Log
git log

## CREATE BRANCH ##

# Show Branches
git branch  #show local branches
git branch -a   #show both local and server branches [Server branches in Red color]

# Create & checkout Branhc
git branch <branch_name> 
git branch develop  ==> it creates new branch named 'develop' but still keep being on master branch
git checkout develop ==> it will change your branch to the develop branch
git checkout -b develop ==> it creates also a branch named develop and switches to it automatically

# Delete Branch
git branch -d <branch_name> ==> deletes the branch. If we have unmerged changes, this command gives a warning and does not delete.  
git branch -D <branch_name> ===> deletes the branch even if it has unmerged changes. It gives no warning.

# Merge Branch
git merge <branch_name>  ==>  this command takes changes from the given branch, and merges with the current branches we are on.
Posted by: Guest on October-05-2021
1

git commands

echo "# New-Projects" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/hussainbabar/New-Projects.git
git push -u origin main
Posted by: Guest on August-11-2021
12

git commands

git init
git add *Enter File Name Here*
git commit -m "first commit"
git remote add origin *Enter URL Here*
git push -u origin master
Posted by: Guest on March-16-2020
1

git commands

# Create a Repository
git init

# Add Files
git add . # All files
git add <filename>

# Commit the Changes
git commit -m "Message goes here..."

# Remote Repository
git remote add origin <link from github>

# Final Step
git push -u origin master
Posted by: Guest on August-04-2021
0

git commands

Configure Git
$ git config --global user.name "your_username"
$ git config --global user.email "[email protected]"
$ git config --global --list
$ git clone [email protected]:gitlab-tests/sample-project.git
To view the files, go to the new local directory
$ cd sample-project
Clone with HTTPS
$ git clone https://gitlab.com/gitlab-tests/sample-project.git
$ cd sample-project
$ git init
$ git remote add origin [email protected]:username/projectpath.git
Download the latest changes in the project
$ git pull <REMOTE> <name-of-branch>
# For stage single file
$ git add <file-name OR folder-name>

or
# For stage all file
$ git add .
#Confirm that the files have been added to staging:
$ git status

# Adds the file to your local repository and stages it for commit. To unstage a file, use 'git reset HEAD YOUR-FILE'.
$ git commit -m "Add existing file"
# Commits the tracked changes and prepares them to be pushed to a remote repository. To remove this commit and modify the file, use 'git reset --soft HEAD~1' and commit and add the file again.
$ git push origin your-branch
# Pushes the changes in your local repository up to the remote repository you specified as the origin
Posted by: Guest on July-17-2021
1

git commands

//initialize git
git init

//Connect with git live code
git remote add origin *Enter URL Here*

//Pull from origin main
git pull origin main

//Pull from origin master
git pull origin master

//To check status of changes
git status

//add all
git add .

//add fileA.css fileB.js
git add fileA.css fileB.js

//Commit changes
git commit -m "your commit on changes"

//Push to master
git push -u origin master
Posted by: Guest on December-04-2020
-1

git commands

git branch
Posted by: Guest on August-23-2020
8

git commands

git init
//add all
git add .

//cancel adds
git reset

//cancel commits
git reset HEAD^
//cancel last 3 commits
git reset HEAD~3

//when first commit
git push -u origin master

//remove remote origin
git remote remove origin

//reset remote origin
git remote add origin https://github.com/yourname/project.git
Posted by: Guest on June-14-2020
0

git commands

If you want to upload your code first check status

//to check how many files contains changes
1. git status

//to add file to the repository
2. git add youFilePath

//if you want to add all file then
3. git add .

//now commit the code
4. git commit -m "anyMessageYouWantToWrite"

//push the code
5. git push

//if you want code from git then
6. git pull
Posted by: Guest on December-29-2020

Browse Popular Code Answers by Language