Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

Wiki Markup
Lets say that you want to create a pull request for the MRQL issue {{\[MRQL-1234\] ...issue-title...}}. You need to create a new branch of your local fork, say named MRQL-1234

No Format

# create a new branch inside your directory 'current'
git checkout -b MRQL-1234
# ... do some changes to the files ...
# store changes in the branch
git push origin MRQL-1234
# commit changes to the branch
git commit -a -m '[MRQL-1234] ...issue-title...'

Wiki Markup
Then go to your GitHub MRQL page and do a Pull Request. Use the same title {{\[MRQL-1234\] ...issue-title...}}.

...