Answers for "add file to existing git repository"

13

git add new files to existing repository

cd existing_folder
git init
git remote add origin https://gitlab.com/abc.git
git add .
git commit -m "Initial commit"
git push -u origin master
Posted by: Guest on August-26-2020
0

add a file to git

/* go to the folder, open the terminal and type this commands */

	git init
    git add .      /* . => it is to add all the files */
    git commit -m "first_commit"
    git remote add origin https://github.com/yourusername/your-repo-name.git
    git pull origin master
    git push origin master
    
/* sometimes we have to force push =>  git push --force origin master  */
Posted by: Guest on November-02-2020

Code answers related to "add file to existing git repository"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language