aJaysanity
aJaysanity

Reputation: 165

Git Push Including my path directory (BitBucket)

This is my first time to encounter this on bitbucket

As you can see on my screenshot It includes the path (Documents/Project/SampleProjects) I am on my local project directory (Sample Projects)

enter image description here

Here's my procedure

git init
git add .
git remote add origin my-url.git
git push -u origin master

Upvotes: 0

Views: 112

Answers (1)

Chamod Perera
Chamod Perera

Reputation: 44

You must execute those command from your project directory

Upvotes: 1

Related Questions