I would like to implement the Rake task, which automates some of the tasks that I have to complete in order to transfer my changes from development to production (and yes, I know that there is something like Capistrano, and that is too much for me). There are some interactive commands in the center, such as git add -i
and a series of commit and click. On the production side, transfers and assets will be completed.
It’s quite tedious to enter all the same commands, so I would like to fully automate it. I did not find the Ruby API for Git.
It should work under Windows 7 and allow at least the following commands: git add
, git status
, git commit
, git push
, git pull
.
source share