How to upload code on GitHub|Using VSCode with Github|Using Command-Line with Github| Git Repository

Опубликовано: 09 Июнь 2019
на канале: Code With Rohini
1,100
29

To learn Angular2 from scratch and for beginners Please see the link below:
   • What is AngularJS and What is Angular...  

#HowToPush #UsingVSCode #UsingTerminal

In this tutorial, I am going to learn you how to push your project/code
on GitHub using the VSCode and Terminal.

And also I tried to solve the problem like please see this link:
https://i.postimg.cc/ncPwyJLW/Screens...

If u face this problem then please go through the following steps:
https://help.github.com/en/articles/a...

This means first you should initialize with the Git repository and then trying to push the code using the command-line.

And If second time suppose u made some changes in your project files then you can directly push using the vs code

Push code Using command-line/Terminal:
https://help.github.com/en/articles/a...

Adding a file to a repository using the command line:
You can upload an existing file to a GitHub repository using the command line.

This procedure assumes you've already:

Created a repository on GitHub, or have an existing repository owned
by someone else, you'd like to contribute to.
Cloned the repository locally on your computer.

1. On your computer, move the file you'd like to upload to GitHub into the local directory that was created when you cloned the repository.

2. Open Terminal.

3. Change the current working directory to your local repository.

4. Stage the file for commit to your local repository.

$ git add .
Adds the file to your local repository and stages it for commit. To unstage, a file, use 'git reset HEAD YOUR-FILE'.

5. Commit the file that you've staged in your local repository.

$ 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.
6. Push the changes in your local repository to GitHub.

$ git push origin your-branch
Pushes the changes in your local repository up to the remote
the repository you specified as the origin


Смотрите видео How to upload code on GitHub|Using VSCode with Github|Using Command-Line with Github| Git Repository онлайн без регистрации, длительностью часов минут секунд в хорошем качестве. Это видео добавил пользователь Code With Rohini 09 Июнь 2019, не забудьте поделиться им ссылкой с друзьями и знакомыми, на нашем сайте его посмотрели 1,100 раз и оно понравилось 29 людям.