To help @llSourcell fix Git logs, the current config.json file contains entries similar to...
Update notice, 57 repositories are now within the default config.json file the following example configurations are left as is for brevity.
{
"fixed": "./fixed.json",
"failed": "./failed.json",
"defaults": {
"origin_branch": "master",
"origin_remote": "origin",
"source_branch": "master",
"source_remote": "source",
"fix_branch": "fix",
"fix_commit": "Fixes logs",
"keep_fix_branch": false,
"no_push": false
},
"repos": [
{
"dir": "~/git/hub/llSourcell/Bitcoin_Trading_Bot",
"source": "https://github.com/jaungiers/Multidimensional-LSTM-BitCoin-Time-Series.git"
},
{
"dir": "~/git/hub/llSourcell/How-to-Predict-Stock-Prices-Easily-Demo",
"source": "git@github.com:jaungiers/LSTM-Neural-Network-for-Time-Series-Prediction.git"
},
{
"dir": "~/git/hub/llSourcell/How_to_simulate_a_self_driving_car",
"source": "git@github.com:naokishibuya/car-behavioral-cloning.git"
}
]
}
... there are likely more repositories that can be added to automated fixing of Git logs.
If you're willing to help track these repositories down then please either list them as a response to this Issue, or via a Pull Request to the default config.json file.
When adding to this list it would be very kind if you could also notate any extra commands required.
Example
git mv ./main.py ./demo.py
This will help with directing future feature developments of the fix_logs project; currently I'm contemplating adding options such as...
{
"dir": "~/git/hub/llSourcell/How_to_simulate_a_self_driving_car",
"source": "git@github.com:naokishibuya/car-behavioral-cloning.git",
"git_commands": {
"after_checkout": ["mv", "./main.py", "./demo.py"]
}
}
... to better facilitate fixing Git logs in an automated fashion.
To help @llSourcell fix Git logs, the current
config.jsonfile contains entries similar to...{ "fixed": "./fixed.json", "failed": "./failed.json", "defaults": { "origin_branch": "master", "origin_remote": "origin", "source_branch": "master", "source_remote": "source", "fix_branch": "fix", "fix_commit": "Fixes logs", "keep_fix_branch": false, "no_push": false }, "repos": [ { "dir": "~/git/hub/llSourcell/Bitcoin_Trading_Bot", "source": "https://github.com/jaungiers/Multidimensional-LSTM-BitCoin-Time-Series.git" }, { "dir": "~/git/hub/llSourcell/How-to-Predict-Stock-Prices-Easily-Demo", "source": "git@github.com:jaungiers/LSTM-Neural-Network-for-Time-Series-Prediction.git" }, { "dir": "~/git/hub/llSourcell/How_to_simulate_a_self_driving_car", "source": "git@github.com:naokishibuya/car-behavioral-cloning.git" } ] }... there are likely more repositories that can be added to automated fixing of Git logs.
If you're willing to help track these repositories down then please either list them as a response to this Issue, or via a Pull Request to the default
config.jsonfile.When adding to this list it would be very kind if you could also notate any extra commands required.
Example
miloharper/simple-neural-networkrequiresgit mvThis will help with directing future feature developments of the
fix_logsproject; currently I'm contemplating adding options such as...{ "dir": "~/git/hub/llSourcell/How_to_simulate_a_self_driving_car", "source": "git@github.com:naokishibuya/car-behavioral-cloning.git", "git_commands": { "after_checkout": ["mv", "./main.py", "./demo.py"] } }... to better facilitate fixing Git logs in an automated fashion.