New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

gitup-cli

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gitup-cli

lightweight, powerful repository hosting

latest
npmnpm
Version
0.2.19
Version published
Maintainers
1
Created
Source

Gitup

lightweight, powerful repository hosting

Installation

Install gitup-cli via NPM:

npm i -g gitup-cli

or if NPM requires root privileges:

sudo npm i -g gitup-cli

Once installed, this will expose the gitup shell command.

Usage

When using gitup for the first time, you will be required to login with an existing account or register a new one.

Note: be sure to replace any < ... > in the commands below with your desired/actual value.

Registering a new account

gitup login <username>

This command will prompt you to register if the username entered does not exist. Registration will read your public key from ~/.ssh and generate a new user account.

Logging in

gitup login <username>

If the username does exist, then gitup will proceed to authenticate the user.

Logging out

gitup logout

Checking currently logged in user

gitup user

Creating a new repository

gitup new <repository-name>

This command, if authenticated, will generate a new repository located at gitup.io/<username>/<repository-name>, and will also generate necessary roles for you to access your new repo. Once generated, you can access your new remote repository via git@gitup.io:<username>/<repository-name>.git.

Committing to a repository

gitup commit <commit-message>

This command will automatically add all changes in the project, commit them, and push them to remote.

Granting repo access to another user

gitup add-user <repsitory-name> <username>

This command will create a new role for the specified user in the specified repository.

Revoking repo access from another user

gitup remove-user <repository-name> <username>

This command will delete an existing user role for the specified repository. Use this command to revoke repository access for a specified user.

FAQs

Package last updated on 30 Mar 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts