-
Notifications
You must be signed in to change notification settings - Fork 12
Add Examples using a example.rst #14
New issue
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
Conversation
|
Have updated the pull request with a new commit containing ccwrite examples and editing a few naming mistakes in the previous commit. |
|
Looks good. I updated master about a week ago - could you please sync with it? You might be able to do this effortlessly by rebasing: |
|
Note that since you've already pushed your code, I think a merge is more On Sun, Apr 10, 2016 at 10:35 AM Karol M. Langner notifications@github.com
|
|
I'm not sure whether I'm doing this right or not. I have two local branches i.e Master and newExamples. newExamples has both my commits.
git log shows me that the last commit made was: It doesn't show the 2 commits which have taken place after |
Rebasing should be fine, it'll rewrite the new commits (Sanjeed's in this case) on top of the ones from cclib/master. |
You need to rebase off of cclib's master. You need to have a remote set up. For example, here are my remotes: $ git remote -v
cclib git@github.com:cclib/cclib.github.io.git (fetch)
cclib git@github.com:cclib/cclib.github.io.git (push)
langner git@github.com:langner/cclib.github.io.git (fetch)
langner git@github.com:langner/cclib.github.io.git (push)
sanjeed https://github.com/Schamnad/cclib.github.io.git (fetch)
sanjeed https://github.com/Schamnad/cclib.github.io.git (push)You might have When you have the upstream remote (I'll call it git checkout newExamples
get fetch --all
git rebase cclib/masterHope that helps! |
|
Hello langner, |
Yup, that's definitely the way to do it if there are conflicts. Don't bother merging automatically generated files manually! |
|
I have created a new Pull request for the feature. This feature was created on top of the latest master changes. |
Have added examples for the ccget script using an Gaussian09 output file. The input used has been provided, the output was too large to paste and has not been provided at the moment.
The files I added were the examples.rst and edited the contents.rst to contain the example tag. All other files were modified when I ran the make command.
Testing done: Opened and checked individual HTML files to see if any of the pages are broken on Chrome
To Do: Add examples where the scripts have been used in larger python scripts.