Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/utkarshm-hub/bit
GoLang alternative to git
https://github.com/utkarshm-hub/bit
Last synced: 24 days ago
JSON representation
GoLang alternative to git
- Host: GitHub
- URL: https://github.com/utkarshm-hub/bit
- Owner: UtkarshM-hub
- License: gpl-3.0
- Created: 2023-12-19T08:54:30.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-27T18:37:17.000Z (6 months ago)
- Last Synced: 2024-11-07T20:56:20.598Z (3 months ago)
- Language: Go
- Homepage:
- Size: 13.6 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![Frame 4](https://github.com/UtkarshM-hub/Bit/assets/70505181/cca9fc7f-c9dd-42c0-83e7-0b4a6a4fe9f9)
bit is a version control system inspired by Git. The main inspiration came from ['Pro Git'](https://git-scm.com/book/en/v2), a book by Scott Chacon (one of the co-founders of GitHub). The 'internals' section of the book provided insightful information about the internal workings of Git and has been a deciding factor in the development of the core workings of Bit.# Commands
1. init
initialize a directory as bit directory
bit init .
2. status
check the status of current working directory and staging areabit status
3. add
add files, changes to staging area inorder to make them ready to committo select all the files
bit add .
for single files
bit add
4. rm
--cached is used to remove from just staging area
bit rm --cached .
to select single files
bit rm --cachedto remove from both staging area and working directory use the following command
bit rm
5. Restorerestore the file from staging area to working directory
bit restore --staged
restore the file changes from previous commit descarding the current changes
bit restore
7. commit
commit the files in staging areabit commit -m ""
8. branch
create a branchbit branch
view branches or view active branch
bit branch -a
9. checkout
switch between branchesbit checkout
# Working of commands
Following information provides just a bird's eye view of how commands are working and it is a bit simplified inorder to make it easy to understand.## Status Command
![directory structure](https://github.com/UtkarshM-hub/Bit/assets/70505181/64a5f727-e2d0-4122-903e-e30e6177974b)
![Status 1](https://github.com/UtkarshM-hub/Bit/assets/70505181/d4d50dbd-e2ec-4753-ab18-6939c525f61d)
![Status 2](https://github.com/UtkarshM-hub/Bit/assets/70505181/f78f1675-8d52-41e2-8e43-ffe7d343bb95)
![Status 3](https://github.com/UtkarshM-hub/Bit/assets/70505181/6e42eb29-5dee-4df2-aec0-f427412c3972)
![Status 4](https://github.com/UtkarshM-hub/Bit/assets/70505181/b9bd2c1c-c7ae-4d0f-93db-4523a9ab2acc)
![Status 5](https://github.com/UtkarshM-hub/Bit/assets/70505181/31f895e4-3162-4743-bad0-aae7d18da814)
![Status 6](https://github.com/UtkarshM-hub/Bit/assets/70505181/f770c57e-be97-40b5-9f7a-62e81717b31c)## Add Command
![Add 1](https://github.com/UtkarshM-hub/Bit/assets/70505181/000c6a9c-1b7d-494d-b2a5-6bd20038140b)## Commit command
![Commit 1](https://github.com/UtkarshM-hub/Bit/assets/70505181/6db089de-cb70-4e06-b1d9-5ae4e27a0c90)
![Commit 2](https://github.com/UtkarshM-hub/Bit/assets/70505181/a06ad118-63c0-416b-a07d-f58c95464b14)
![Commit 3](https://github.com/UtkarshM-hub/Bit/assets/70505181/fa1c6dbd-48e5-4df9-bf38-4463d22d61fa)## Branch command
![Branch 1](https://github.com/UtkarshM-hub/Bit/assets/70505181/798a256c-6b31-46ec-87b7-11342f05dba5)## Checkout command
![Checkout 1](https://github.com/UtkarshM-hub/Bit/assets/70505181/01d4aafe-73b0-4e9e-bc82-a10ca1645ea4)
![Checkout 2](https://github.com/UtkarshM-hub/Bit/assets/70505181/9aad07a1-c452-42a9-bfad-9ad35b971915)
![Checkout 4](https://github.com/UtkarshM-hub/Bit/assets/70505181/4aca12c4-f9f2-4a6f-9cbe-b909c7fdf24e)