Skip to content

Commit

Permalink
core(build): CLI removed (#946)
Browse files Browse the repository at this point in the history
* core(build): CLI removed
* adjust install instructions in doc and README
* fix master_test and remove useless/duplicated tests examples_test.go
  • Loading branch information
gen2thomas authored Jun 4, 2023
1 parent ac849e7 commit 0d0a508
Show file tree
Hide file tree
Showing 71 changed files with 1,611 additions and 2,112 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
.sass-cache
*.test
*.swp
*.snap
profile.cov
count.out
*.swp
*.snap
/parts
/prime
/stage
vendor/
output/
.idea/
coverage.txt
.chglog/chglog_tmp*.md
Expand Down
5 changes: 3 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ Descriptions for each of these will eventually be provided below.
* If there are commits after yours use “git rebase -i <new_head_branch>”
* If you have local changes you may need to use “git stash”
* For git help see [progit](http://git-scm.com/book) which is an awesome (and free) book on git
* Use one of the latest existing platforms/drivers etc. as a blueprint for creating a new one

## Creating Pull Requests

Expand All @@ -58,9 +59,9 @@ The basics are as follows:

1. Fork the project via the GitHub UI

2. `go get` the upstream repo and set it up as the `upstream` remote and your own repo as the `origin` remote:
2. `git clone` the upstream repo and set it up as the `upstream` remote and your own repo as the `origin` remote:

`go get gobot.io/x/gobot/v2`
`git clone https://github.com/hybridgroup/gobot.git`
`cd $GOPATH/src/gobot.io/x/gobot`
`git remote rename origin upstream`
`git remote add origin git@github.com/YOUR_GITHUB_NAME/gobot`
Expand Down
Loading

0 comments on commit 0d0a508

Please sign in to comment.