Answers for "how to upload a pycharm project to github"

2

upload pycharm project to github

Step 1: Go to VCS panel which is present on the top of editor and click on it. After clicking select the “Enable Version Control Integration“.
Step 2: The next step is to click on the green tik present in the upper part of the editor. Basically this symbol refers to Commit and what it does is it will collect all unread files and make them ready on gitHub.
THANQ - SAMEERAZ
-ANSWER
Posted by: Guest on March-16-2021
1

How to add a pycharm project to github

echo "# Clock" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/Sakib714/Clock.git
git push -u origin main
Posted by: Guest on July-29-2021

Code answers related to "how to upload a pycharm project to github"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language