Skip to content

Instantly share code, notes, and snippets.

View Monkey-D1-Luffy's full-sized avatar

MONKEY D LUFFY Monkey-D1-Luffy

View GitHub Profile
@yingjiNB
yingjiNB / github...yingjiNB...SolidityDemo...HelloWeb3.sol
Created March 28, 2024 08:11
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.25+commit.b61c2a91.js&optimize=false&runs=200&gist=
// this line is added to create a gist. Empty file is not allowed.
@Monkey-D1-Luffy
Monkey-D1-Luffy / Gist 4
Created March 28, 2024 07:02
The Description for the Gist 4
Gist 4
@Monkey-D1-Luffy
Monkey-D1-Luffy / Gist 2
Created March 28, 2024 07:01
The Description for the Gist 2
Gist 2
@nirajgiriXD
nirajgiriXD / GitHub Workflow and Development Process.md
Last active March 18, 2024 10:57
This gist outlines a comprehensive GitHub workflow and development process for managing projects collaboratively using Git and GitHub.

GitHub Workflow and Development Process

  • The main branch should be kept stable for potential releases.
  • Create a develop branch for ongoing development and set it as the default branch.
  • For adding a feature, create a branch starting with feat/ (e.g., feat/feature-name) from the develop branch.
  • For fixing an issue, create a branch starting with fix/ (e.g., fix/feature-name, fix/issue-name) from the develop branch.
  • For refactoring code, create a branch starting with ref/ (e.g., ref/feature-name, ref/v1.0.0) from the develop branch.
  • For release, create a branch starting with release/ (e.g., release/v1.0.0) from the develop branch.
  • Once the release branch is ready, merge it to the main branch.