Skip to content

dejanzivanov/42_WB_2022_Minishell

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

42_WB_2022_Minishell

Conventions

No Task Actions Target Example
1 Create issue Add, Create, Implement, Modify, Debug, Close Feature / Function / File name Implement History / Add Makefile/ Create s_to_l()
2 Create branch PERSONAL ID + Add/ Create/ Implement/ etc. Feature / Function / File name 007-Implement History / 005-Add Makefile
3 Create commit Description of choice + "Fixes #" N/A "I have fixed this thing. Fixes #4"

Contributor Details

ID Name
005 Maggie
549 Deky
007 Domen
099 Vlad

General Instructions

Create Branch

A: Branch Creation:
	```git branch [BRANCH_NAME]``` OR ```git checkout -b [BRANCH_NAME]```
   Switch to branch:
	```git checkout [BRANCH_NAME]```
   Pushing created Branch:
	```git push --set-upstream origin [BRANCH_NAME]```
   Pull request:
	- via Github

B: Move commit from overmind to new branch:
   Create new branch:
	```git branch [BRANCH_NAME]``` OR ```git checkout -b [BRANCH_NAME]```
   Merge branch:
	```git merge overmind```
   Change to overmind (main):
	```git checkout overmind```
   Reset *if need be*:
	```git reset --hard HEAD~[N]``` # Go back [N] commits. You *will* lose uncommitted work. [N] is a number.
   Switch to branch:
	```git checkout [BRANCH_NAME]```



   C: Installing reqierments:
	-install readline library:
		 For Linux Debian(based):	
		```apt-get install libreadline-dev```

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 97.6%
  • Makefile 2.4%