Pr_robot_factory/makefile

32 lines
743 B
Makefile
Raw Permalink Normal View History

2022-12-08 14:32:36 +01:00
update_readme:
git add README.md
git commit -m "updated README"
git push -u origin main
2022-12-08 14:33:31 +01:00
update_make:
git add makefile
git commit -m "updated makefile"
git push -u origin main
2022-12-08 15:00:20 +01:00
update_all:
git add --all
git commit -m "Updated everything. Further explanation in README"
2022-12-08 23:13:11 +01:00
git push -u origin main
update_domain:
git add domain/
git commit -m "Updated domain. Further explanation in README"
git push -u origin main
2022-12-20 12:58:52 +01:00
update_exceptions:
git add robot/exceptions
git commit -m "Updated Exceptions"
git push -u origin main
update_interfaces:
git add robot/interfaces
git commit -m "updated interfaces"
git push -u origin main
2022-12-25 20:08:50 +01:00
update_ui:
git add ui/
git commit -m "updated ui"
git push -u origin main
fetch_git:
git pull origin main