Karthikeyan
Karthikeyan

Reputation: 49

Unable to push my Angular code into Github

I am new person for github,i try to upload angular project into github but only angular-cli code is created,i can not push my entire worked code,Thanks in advance. After complete push operation it shows "untracked files: nothing added to commit but untracked files present" error

Upvotes: 1

Views: 1210

Answers (1)

Giga Songulashvili
Giga Songulashvili

Reputation: 459

you need to do these steps

1. git add .
2. git commit -m "your commit name"
3. git push origin master

Upvotes: 1

Related Questions