You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
navigate to the desired directory that you want to upload
Initialize Git in Your Local Project
git init
git status (check if some files are already added and if git was initialised properly)
Add file to local branch
git add . (add all files) (if need to upload specific file replace . -> filename)
again check git status to see if all files are ready to be commited
Commit changes
git commit -m "Initial commit" (can write any remark of description here) (for instance, fixing bug etc) (helps to keep track of commits and why they were made)