We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi! Very interesting project. Thanks a lot for sharing!
I was wondering whether you'd consider revising naming conventions to be a bit less verbose and closer to git's syntax. What I mean is:
const git = new GitKit({ repo: REPOSITORY_URL, user: REPOSITORY_USER }); git.commit('initial commit, '*'); git.commit('initial commit, [ 'app.js', 'scripts.js' ]); git.branch.current() git.branch.checkout('develop/feature/profile-update')
Not all of them would be as simple of course, since checkout() might also need to be accompanied by checkoutNew etc. but I hope you know what I mean.
checkout()
checkoutNew
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi! Very interesting project. Thanks a lot for sharing!
I was wondering whether you'd consider revising naming conventions to be a bit less verbose and closer to git's syntax. What I mean is:
Not all of them would be as simple of course, since
checkout()
might also need to be accompanied bycheckoutNew
etc. but I hope you know what I mean.The text was updated successfully, but these errors were encountered: