Я создал новый репо в Github, и теперь я хочу выдвинуть только файл gitignore. При следующем коммите я хотел бы отправить остальные файлы.
Шаги, которые я сделал -
> git branch
* master
> git branch -r
> git status
On branch master
Changes to be committed:
(use "git reset HEAD <file>..." to unstage)
new file: .idea/inspectionProfiles/Project_Default.xml
new file: .idea/vcs.xml
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: .gitignore
modified: .idea/workspace.xml
Поэтому я положил .idea/workspace.xml
в gitignore вместе с папкой .idea
> git add .gitignore
> git commit -m 'gitignore only'
У меня вопрос, какой будет команда push, поскольку в удаленном репо нет ветки.
Любая помощь высоко ценится.
Обновление -1
Я пытался со следующим -
git add .gitignore
git commit -m "git ignore only"
git push origin master
Теперь, когда япроверьте удаленный GitHub Я вижу, что все файлы были добавлены.