- ๐ Hi, Iโm Suvrajeet
- ๐ Iโm interested in Blockchain
- ๐ฑ Iโm currently learning Blockchain
- ๐๏ธ Iโm looking to collaborate on Blockchain Projects
- ๐ซ Reach me @twitter - suvrajeetb
- Gitpod can also be used as an alternate way instead of using local machine to work on files and hence finally upload them to a VCS service provider.
- Step A may not be required in this case
- Commands to upload files from local repository to remote repository from VCS services provides like ' Github, Gitlab, etc ' : -
git config --global user.name "github/gitlab-username" git config --global user.email "github/gitlab-registered-email-address" git clone https://www.github.com/username/repository-name.git **_OR_** https://www.gitlab.com/username/repo-name.git cd repository-name touch new-file-name git add . **_OR_** git add file-name git commit -m "commit-message" git status
- To check the status of your files
git push -u origin master
- "-u origin master" is optional & is not required at most of the time .
git init git remote add origin https://github.com/username/repo-name.git echo "# echo-text" >> README.md git add README.md git commit -m "commit message" git branch -M trunk git push -u origin trunk git init git remote add origin https://github.com/username/repo-name.git git add . git commit -m "commit-message" git branch -M trunk git pull https://github.com/username/repo-name.git --allow-unrelated-histories git push -u origin trunk git init git remote add origin https://github.com/username/repo-name.git git branch -M trunk git push -u origin trunk 