* Νῖκος Θεοδώρου <[email protected]> (Tue, 26 May 2015 19:21:52 +0300): > nikos@Russell:~/Desktop/AUR4/coolvlviewer$ git filter-branch > --tree-filter fatal: Needed a single revision
You need to add a command that is performed on each revision, but in your case, this step is not necessary, as there are no old git revisions. > nikos@Russell:~/Desktop/AUR4/coolvlviewer$ git push -u origin master > error: src refspec master does not match any. > error: failed to push some refs to > 'ssh+git://aur4.archlinux.org/coolvlviewer.git/' You didn't add and commit changes. $ git add . $ git commit -m "Initial commit" Now you can push your (first) commit. Best, Marcel
