Table of Contents
Last year, we came across Sarah Drasner's array explorer. It is a really cool resource for anyone to easily figure out the best JS array method to use. We loved it and decided to build something similar for Git.
Website: Click to find the right git commands without digging through the web.
Explore and Enjoy!
- React
- Netlify
- Github Pages
npm i (Install all dependencies)
npm start
To try GitExplorer in a docker container, run this:
docker-compose up
Awesome devs and designer at Behrooz and Ali
Thank you for contributing to GitExplorer!
Please follow the below instructions to send a Pull Request (Search the website to make sure that this command doesn't already exist).
The data folder (inside the src directory) is where you will be operating from. The three files you should be concerned with are the primary-options.js
, secondary-options.js
and tertiary-options.js
files.
These three files are responsible for the options a user can pick.
primary-options.js
contains an array of objects responsible for the options of the first select box.
secondary-options.js
contains an object. This object houses an arrays of objects (a mouthful 😄), this is responsible for the second set of options a user sees when they select a primary option.
tertiary-option.js
file is responsible for cases where there needs to be a third & final select box.
- Please ensure you are not on the master branch. Checkout to a new branch entirely.
- Add an object to the array in the
primary-options.js
file. Sample Format:
{ value: 'show', label: 'show/view' }
- Add an array to the
secondary-options
file. Sample Format:
show: [
{
value: 'repo-status',
label: 'status of project including staged, unstaged and untracked files',
usage: 'git status'
nb: 'To know about this command, "run git status --help"'
},
{
value: 'logs',
label: 'commit logs/history'
},
The nb
is optional. It is responsible for what the user sees in the notes section.
\n
is used to insert newline.
- To add tertiary options, remove the
usage
andnb
key/value pair for that command in thesecondary-options.js
file e.g..
show: [
{
value: 'logs',
label: 'commit logs/history'
},
then supply tertiary-options.js
file the necessary data e.g.
logs: [
{
value: 'all',
label: 'all',
usage: 'git log',
nb: 'Type q in the terminal to exit the logs'
},
{
value: 'last-n-commit',
label: 'for last xxx number of commits',
usage: 'git log -n',
nb: 'Replace n with number of commits e.g. git log -2'
},
{
value: 'particular-period',
label: 'since a particular period',
usage: 'git log --since=period',
nb: 'Replace period with intended timeframe e.g git log --since=3days. You can use dates like 2018-12-31.\n\n Similar flags are --until, --before, --after'
}
]
- Once you are done, add, commit, push and create a PR to Master.
For change website language you need to translate all label in primary-options.js
, secondary-options.js
and tertiary-options.js
files to your language.
for example for translate website to persian you can create a new object in primary-options.js
named options_fa and translate all labels to persian then in index.js
file at data folder refrence to new object.
primary-options.js
const options_fa = [
{ value: 'add', label: 'اضافه کردن' },
{ value: 'commit', label: 'کامیت' },
{ value: 'revert', label: 'برگرداندن' },
{ value: 'initialize', label: 'مقداردهی اولیه' },
{ value: 'modify', label: 'اصلاح کردن' },
{ value: 'show', label: 'نشان دادن' },
{ value: 'delete', label: 'حذف کردن' },
{ value: 'compareCommits', label: 'مقایسه دو کامیت' },
{ value: 'configure', label: 'پیکربندی' },
{ value: 'clone', label: 'کلون' },
{ value: 'ignore', label: 'نادیده گرفتن' },
{ value: 'rename', label: 'تغییر نام' },
{ value: 'merge', label: 'ادغام' },
{ value: 'squash', label: 'اسکواش' },
{ value: 'stash', label: 'ذخیره کردن' },
{ value: 'debug', label: 'اشکال زدایی' },
{ value: 'recover', label: 'بازیافتن' },
{ value: 'synchronize', label: 'همگام سازی' },
{ value: 'rebase', label: 'پایه گذاری مجدد' },
{ value: 'cherrypick', label: 'انتخاب بهترین ' },
];
export const primaryOptions = options_fa.sort((x, y) => {
if (x.value < y.value) {
return -1;
}
if (x.value > y.value) {
return 1;
}
return 0;
});
index.js
export { primaryOptions as optionsFirst } from './primary-options';
export { secondaryOptions_fa as optionsSecond } from './secondary-options';
export { tertiaryOptions_fa as optionsThird } from './tertiary-options';