I want to to create Batch command file for GitHub. by using that batch file can add new project file and commit, checkout. also it have to delete files to create branch, create clone like this kind of facility
i am using following commands for GitHub but this commands have to run separately i need to combine all commands in one single batch file
# clone your own project
$ git clone dotfiles → git clone git://github.com/YOUR_USER/dotfiles.git
clone another project
$ git clone github/hub → git clone git://github.com/github/hub.git
open the current project's issues page
$ git browse -- issues → open https://github.com/github/hub/issues
open another project's wiki
$ git browse mojombo/jekyll wiki → open https://github.com/mojombo/jekyll/wiki
create a topic branch
$ git checkout -b feature ( making changes ... ) $ git commit -m "done with feature"
i am refering following link https://hub.github.com/ for github commands i unable to create in single batch file for GitHub